Cook: fbvnc-auth 1.0.2 ================================================================================ QA: checking package receipt... Extracting source archive "fbvnc-auth-1.0.2.tar.gz" Executing: compile_rules CFLAGS : -march=i486 -Os -pipe -mindirect-branch=thunk CXXLAGS : -march=i486 -Os -pipe -mindirect-branch=thunk CPPFLAGS : -D_GLIBCXX_USE_C99_MATH=1 LDFLAGS : -Wl,-Os,--as-needed i486-slitaz-linux-gcc -c -Wall -Os fbvnc.c i486-slitaz-linux-gcc -c -Wall -Os draw.c i486-slitaz-linux-gcc -c -Wall -Os d3des.c i486-slitaz-linux-gcc -c -Wall -Os vncauth.c d3des.c:39:22: warning: 'Df_Key' defined but not used [-Wunused-variable] static unsigned char Df_Key[24] = { ^~~~~~ d3des.c:38:22: warning: 'Kn3' defined but not used [-Wunused-variable] static unsigned long Kn3[32] = { 0L }; ^~~ d3des.c:37:22: warning: 'KnR' defined but not used [-Wunused-variable] static unsigned long KnR[32] = { 0L }; ^~~ vncauth.c: In function 'vncEncryptAndStorePasswd': vncauth.c:60:13: warning: implicit declaration of function 'vncEncryptAndStorePasswd2'; did you mean 'vncEncryptAndStorePasswd'? [-Wimplicit-function-declaration] return (vncEncryptAndStorePasswd2(passwd, NULL, fname) == 0); ^~~~~~~~~~~~~~~~~~~~~~~~~ vncEncryptAndStorePasswd vncauth.c: In function 'vncEncryptAndStorePasswd2': vncauth.c:92:13: warning: pointer targets in passing argument 1 of 'strncpy' differ in signedness [-Wpointer-sign] strncpy(encryptedPasswd, passwd, 8); ^~~~~~~~~~~~~~~ In file included from /usr/include/features.h:428, from /usr/include/bits/libc-header-start.h:33, from /usr/include/stdio.h:27, from vncauth.c:24: /usr/include/bits/string_fortified.h:103:1: note: expected 'char * restrict' but argument is of type 'unsigned char *' __NTH (strncpy (char *__restrict __dest, const char *__restrict __src, ^~~~~ vncauth.c:94:26: warning: pointer targets in passing argument 1 of 'strncpy' differ in signedness [-Wpointer-sign] strncpy(encryptedPasswd + 8, passwdViewOnly, 8); ~~~~~~~~~~~~~~~~^~~ In file included from /usr/include/features.h:428, from /usr/include/bits/libc-header-start.h:33, from /usr/include/stdio.h:27, from vncauth.c:24: /usr/include/bits/string_fortified.h:103:1: note: expected 'char * restrict' but argument is of type 'unsigned char *' __NTH (strncpy (char *__restrict __dest, const char *__restrict __src, ^~~~~ vncauth.c:76:9: warning: unused variable 'i' [-Wunused-variable] int i, bytesToWrite, bytesWrote; ^ vncauth.c: In function 'vncDecryptPasswdFromFile': vncauth.c:131:6: warning: implicit declaration of function 'vncDecryptPasswdFromFile2'; did you mean 'vncDecryptPasswdFromFile'? [-Wimplicit-function-declaration] if (vncDecryptPasswdFromFile2(fname, passwd, NULL) == 0) { ^~~~~~~~~~~~~~~~~~~~~~~~~ vncDecryptPasswdFromFile vncauth.c: In function 'vncDecryptPasswdFromFile2': vncauth.c:180:6: warning: pointer targets in passing argument 1 of 'des' differ in signedness [-Wpointer-sign] des(passwd, passwd); ^~~~~~ In file included from vncauth.c:32: d3des.h:43:13: note: expected 'unsigned char *' but argument is of type 'char *' extern void des(unsigned char *, unsigned char *); ^~~ vncauth.c:180:14: warning: pointer targets in passing argument 2 of 'des' differ in signedness [-Wpointer-sign] des(passwd, passwd); ^~~~~~ In file included from vncauth.c:32: d3des.h:43:13: note: expected 'unsigned char *' but argument is of type 'char *' extern void des(unsigned char *, unsigned char *); ^~~ vncauth.c:187:6: warning: pointer targets in passing argument 1 of 'des' differ in signedness [-Wpointer-sign] des(&passwd[8], &passwd[8]); ^~~~~~~~~~ In file included from vncauth.c:32: d3des.h:43:13: note: expected 'unsigned char *' but argument is of type 'char *' extern void des(unsigned char *, unsigned char *); ^~~ vncauth.c:187:18: warning: pointer targets in passing argument 2 of 'des' differ in signedness [-Wpointer-sign] des(&passwd[8], &passwd[8]); ^~~~~~~~~~ In file included from vncauth.c:32: d3des.h:43:13: note: expected 'unsigned char *' but argument is of type 'char *' extern void des(unsigned char *, unsigned char *); ^~~ vncauth.c: In function 'vncRandomBytes': vncauth.c:211:28: warning: implicit declaration of function 'time'; did you mean 'nice'? [-Wimplicit-function-declaration] seed = (unsigned int)time(0) ^ (unsigned int)getpid(); ^~~~ nice fbvnc.c: In function 'vnc_init': fbvnc.c:92:2: warning: ignoring return value of 'read', declared with attribute warn_unused_result [-Wunused-result] read(fd, vncver, 12); ^~~~~~~~~~~~~~~~~~~~ fbvnc.c:93:2: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result] write(fd, "RFB 003.003\n", 12); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fbvnc.c:103:2: warning: ignoring return value of 'read', declared with attribute warn_unused_result [-Wunused-result] read(fd, &connstat, sizeof(connstat)); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fbvnc.c:152:3: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result] write(fd, challenge, sizeof(challenge)); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fbvnc.c:183:2: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result] write(fd, &clientinit, sizeof(clientinit)); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fbvnc.c:184:2: warning: ignoring return value of 'read', declared with attribute warn_unused_result [-Wunused-result] read(fd, &serverinit, sizeof(serverinit)); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fbvnc.c:197:2: warning: ignoring return value of 'read', declared with attribute warn_unused_result [-Wunused-result] read(fd, buf, ntohl(serverinit.len)); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fbvnc.c:219:2: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result] write(fd, &pixfmt_cmd, sizeof(pixfmt_cmd)); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fbvnc.c: In function 'showmsg': fbvnc.c:411:2: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result] write(STDOUT_FILENO, msg, strlen(msg)); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ fbvnc.c: In function 'rat_event': fbvnc.c:394:2: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result] write(fd, &me, sizeof(me)); ^~~~~~~~~~~~~~~~~~~~~~~~~~ fbvnc.c: In function 'vnc_refresh': fbvnc.c:237:2: warning: ignoring return value of 'write', declared with attribute warn_unused_result [-Wunused-result] write(fd, &fbup_req, sizeof(fbup_req)); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ i486-slitaz-linux-gcc -o fbvnc fbvnc.o draw.o d3des.o vncauth.o ================================================================================ Executing strip on all files... Done Time: 0.27s. Size: 34012 B -> 25888 B. Save: 8 KB. ================================================================================ Pack: fbvnc-auth 1.0.2 ================================================================================ Executing: genpkg_rules Copying folders and files... Done Copying "receipt"... Done Determining package architecture... i486 Creating the list of files... Done Creating md5sum of files... Done Compressing the FS... Done Creating full cpio archive... Done QA: checking for empty package... Done Removing old package "fbvnc-auth-1.0.2-i486.tazpkg" Done The release checksum has changed. ================================================================================ Package "fbvnc-auth-1.0.2-i486.tazpkg" created Post-check ================================================================================ Checking build... Done Checking 'any' arch... Done Checking libtool in source/fbvnc-auth-1.0.2... Done Checking site script in source/fbvnc-auth-1.0.2... Done Checking ownership in install... Done Checking permissions in install... Done Checking broken symlinks in install... Done Querying Repology... Done Updating activity log... Done ================================================================================ Summary for: fbvnc-auth 1.0.2 ================================================================================ Src file : fbvnc-auth-1.0.2.tar.gz Src size : 16.0K Source dir : 140.0K Produced : 40.0K Cook time : 9s Cook date : 2020-07-07 06:08 Target arch : i486 -------------------------------------------------------------------------------- # : Packed : Compressed : Files : Package name -------------------------------------------------------------------------------- 1 : 56.0K : 9.6K : 1 : fbvnc-auth-1.0.2-i486.tazpkg ================================================================================