>>> dhcpdump 1.8 Extracting gzip -d -c /home/autobuild/autobuild/instance-5/dl/dhcpdump/dhcpdump-1.8.tar.gz | tar --strip-components=1 -C /home/autobuild/autobuild/instance-5/output-1/build/dhcpdump-1.8 -xf - >>> dhcpdump 1.8 Patching Applying 0001-use-non-bsd-structures.patch using patch: patching file dhcpdump.c >>> dhcpdump 1.8 Configuring >>> dhcpdump 1.8 Building GIT_DIR=. PATH="/home/autobuild/autobuild/instance-5/output-1/host/bin:/home/autobuild/autobuild/instance-5/output-1/host/sbin:/home/autobuild/make:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl" /usr/bin/make -j1 -C /home/autobuild/autobuild/instance-5/output-1/build/dhcpdump-1.8 CC="/home/autobuild/autobuild/instance-5/output-1/host/bin/sh4eb-buildroot-linux-musl-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g0 -DHAVE_STRSEP -D_GNU_SOURCE" LIBS="-lpcap" dhcpdump make[1]: Entering directory '/home/autobuild/autobuild/instance-5/output-1/build/dhcpdump-1.8' /home/autobuild/autobuild/instance-5/output-1/host/bin/sh4eb-buildroot-linux-musl-gcc -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g0 -DHAVE_STRSEP -D_GNU_SOURCE -Wall -g -c -o dhcpdump.o dhcpdump.c dhcpdump.c: In function 'pcap_callback': dhcpdump.c:153:17: error: implicit declaration of function 'strftime' [-Wimplicit-function-declaration] 153 | strftime(timestamp, sizeof(timestamp), "%Y-%m-%d %H:%M:%S.", | ^~~~~~~~ dhcpdump.c:28:1: note: include '' or provide a declaration of 'strftime' 27 | #include "dhcp_options.h" +++ |+#include 28 | dhcpdump.c:153:17: warning: incompatible implicit declaration of built-in function 'strftime' [-Wbuiltin-declaration-mismatch] 153 | strftime(timestamp, sizeof(timestamp), "%Y-%m-%d %H:%M:%S.", | ^~~~~~~~ dhcpdump.c:153:17: note: include '' or provide a declaration of 'strftime' dhcpdump.c:154:21: error: implicit declaration of function 'localtime' [-Wimplicit-function-declaration] 154 | localtime(&(tp.tv_sec))); | ^~~~~~~~~ dhcpdump.c:154:21: note: 'localtime' is defined in header ''; this is probably fixable by adding '#include ' dhcpdump.c:153:26: warning: pointer targets in passing argument 1 of 'strftime' differ in signedness [-Wpointer-sign] 153 | strftime(timestamp, sizeof(timestamp), "%Y-%m-%d %H:%M:%S.", | ^~~~~~~~~ | | | u_char * {aka unsigned char *} dhcpdump.c:153:26: note: expected 'char *' but argument is of type 'u_char *' {aka 'unsigned char *'} dhcpdump.c:154:21: error: passing argument 4 of 'strftime' makes pointer from integer without a cast [-Wint-conversion] 154 | localtime(&(tp.tv_sec))); | ^~~~~~~~~~~~~~~~~~~~~~~ | | | int dhcpdump.c:154:21: note: expected 'const void *' but argument is of type 'int' dhcpdump.c:155:44: warning: pointer targets in passing argument 1 of 'strlen' differ in signedness [-Wpointer-sign] 155 | sprintf(timestamp + strlen(timestamp), "%03ld", | ^~~~~~~~~ | | | u_char * {aka unsigned char *} In file included from dhcpdump.c:22: /home/autobuild/autobuild/instance-5/output-1/host/sh4eb-buildroot-linux-musl/sysroot/usr/include/string.h:54:16: note: expected 'const char *' but argument is of type 'u_char *' {aka 'unsigned char *'} 54 | size_t strlen (const char *); | ^~~~~~~~~~~~ dhcpdump.c:155:35: warning: pointer targets in passing argument 1 of 'sprintf' differ in signedness [-Wpointer-sign] 155 | sprintf(timestamp + strlen(timestamp), "%03ld", | ~~~~~~~~~~^~~~~~~~~~~~~~~~~~~ | | | u_char * {aka unsigned char *} In file included from dhcpdump.c:20: /home/autobuild/autobuild/instance-5/output-1/host/sh4eb-buildroot-linux-musl/sysroot/usr/include/stdio.h:111:13: note: expected 'char * restrict' but argument is of type 'u_char *' {aka 'unsigned char *'} 111 | int sprintf(char *__restrict, const char *__restrict, ...); | ^ dhcpdump.c:155:61: warning: format '%ld' expects argument of type 'long int', but argument 3 has type 'suseconds_t' {aka 'long long int'} [-Wformat=] 155 | sprintf(timestamp + strlen(timestamp), "%03ld", | ~~~~^ | | | long int | %03lld 156 | tp.tv_usec / 1000); | ~~~~~~~~~~~~~~~~~ | | | suseconds_t {aka long long int} dhcpdump.c:159:28: error: implicit declaration of function 'ether_ntoa' [-Wimplicit-function-declaration] 159 | strcpy(mac_origin, ether_ntoa((struct ether_addr *)eh->ether_shost)); | ^~~~~~~~~~ dhcpdump.c:159:16: warning: pointer targets in passing argument 1 of 'strcpy' differ in signedness [-Wpointer-sign] 159 | strcpy(mac_origin, ether_ntoa((struct ether_addr *)eh->ether_shost)); | ^~~~~~~~~~ | | | u_char * {aka unsigned char *} /home/autobuild/autobuild/instance-5/output-1/host/sh4eb-buildroot-linux-musl/sysroot/usr/include/string.h:33:15: note: expected 'char * restrict' but argument is of type 'u_char *' {aka 'unsigned char *'} 33 | char *strcpy (char *__restrict, const char *__restrict); | ^ dhcpdump.c:159:28: error: passing argument 2 of 'strcpy' makes pointer from integer without a cast [-Wint-conversion] 159 | strcpy(mac_origin, ether_ntoa((struct ether_addr *)eh->ether_shost)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | | | int /home/autobuild/autobuild/instance-5/output-1/host/sh4eb-buildroot-linux-musl/sysroot/usr/include/string.h:33:33: note: expected 'const char * restrict' but argument is of type 'int' 33 | char *strcpy (char *__restrict, const char *__restrict); | ^ dhcpdump.c:160:16: warning: pointer targets in passing argument 1 of 'strcpy' differ in signedness [-Wpointer-sign] 160 | strcpy(mac_destination, | ^~~~~~~~~~~~~~~ | | | u_char * {aka unsigned char *} /home/autobuild/autobuild/instance-5/output-1/host/sh4eb-buildroot-linux-musl/sysroot/usr/include/string.h:33:15: note: expected 'char * restrict' but argument is of type 'u_char *' {aka 'unsigned char *'} 33 | char *strcpy (char *__restrict, const char *__restrict); | ^ dhcpdump.c:161:13: error: passing argument 2 of 'strcpy' makes pointer from integer without a cast [-Wint-conversion] 161 | ether_ntoa((struct ether_addr *)eh->ether_dhost)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | | | int /home/autobuild/autobuild/instance-5/output-1/host/sh4eb-buildroot-linux-musl/sysroot/usr/include/string.h:33:33: note: expected 'const char * restrict' but argument is of type 'int' 33 | char *strcpy (char *__restrict, const char *__restrict); | ^ dhcpdump.c:163:16: warning: pointer targets in passing argument 1 of 'strcpy' differ in signedness [-Wpointer-sign] 163 | strcpy(ip_origin, (u_char *)inet_ntoa(ip->ip_src)); | ^~~~~~~~~ | | | u_char * {aka unsigned char *} /home/autobuild/autobuild/instance-5/output-1/host/sh4eb-buildroot-linux-musl/sysroot/usr/include/string.h:33:15: note: expected 'char * restrict' but argument is of type 'u_char *' {aka 'unsigned char *'} 33 | char *strcpy (char *__restrict, const char *__restrict); | ^ dhcpdump.c:163:27: warning: pointer targets in passing argument 2 of 'strcpy' differ in signedness [-Wpointer-sign] 163 | strcpy(ip_origin, (u_char *)inet_ntoa(ip->ip_src)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | | | u_char * {aka unsigned char *} /home/autobuild/autobuild/instance-5/output-1/host/sh4eb-buildroot-linux-musl/sysroot/usr/include/string.h:33:33: note: expected 'const char * restrict' but argument is of type 'u_char *' {aka 'unsigned char *'} 33 | char *strcpy (char *__restrict, const char *__restrict); | ^ dhcpdump.c:164:16: warning: pointer targets in passing argument 1 of 'strcpy' differ in signedness [-Wpointer-sign] 164 | strcpy(ip_destination, (u_char *)inet_ntoa(ip->ip_dst)); | ^~~~~~~~~~~~~~ | | | u_char * {aka unsigned char *} /home/autobuild/autobuild/instance-5/output-1/host/sh4eb-buildroot-linux-musl/sysroot/usr/include/string.h:33:15: note: expected 'char * restrict' but argument is of type 'u_char *' {aka 'unsigned char *'} 33 | char *strcpy (char *__restrict, const char *__restrict); | ^ dhcpdump.c:164:32: warning: pointer targets in passing argument 2 of 'strcpy' differ in signedness [-Wpointer-sign] 164 | strcpy(ip_destination, (u_char *)inet_ntoa(ip->ip_dst)); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | | | u_char * {aka unsigned char *} /home/autobuild/autobuild/instance-5/output-1/host/sh4eb-buildroot-linux-musl/sysroot/usr/include/string.h:33:33: note: expected 'const char * restrict' but argument is of type 'u_char *' {aka 'unsigned char *'} 33 | char *strcpy (char *__restrict, const char *__restrict); | ^ dhcpdump.c: In function 'printdata': dhcpdump.c:367:25: warning: pointer targets in passing argument 1 of 'strncpy' differ in signedness [-Wpointer-sign] 367 | strncpy(buf, &data[j + 2], data[j + 1]); | ^~~ | | | u_char * {aka unsigned char *} /home/autobuild/autobuild/instance-5/output-1/host/sh4eb-buildroot-linux-musl/sysroot/usr/include/string.h:34:16: note: expected 'char * restrict' but argument is of type 'u_char *' {aka 'unsigned char *'} 34 | char *strncpy (char *__restrict, const char *__restrict, size_t); | ^ dhcpdump.c:367:30: warning: pointer targets in passing argument 2 of 'strncpy' differ in signedness [-Wpointer-sign] 367 | strncpy(buf, &data[j + 2], data[j + 1]); | ^~~~~~~~~~~~ | | | u_char * {aka unsigned char *} /home/autobuild/autobuild/instance-5/output-1/host/sh4eb-buildroot-linux-musl/sysroot/usr/include/string.h:34:34: note: expected 'const char * restrict' but argument is of type 'u_char *' {aka 'unsigned char *'} 34 | char *strncpy (char *__restrict, const char *__restrict, size_t); | ^ dhcpdump.c:513:25: warning: pointer targets in passing argument 1 of 'strncpy' differ in signedness [-Wpointer-sign] 513 | strncpy(buf, &data[j + 5], data[j + 1] - 3); | ^~~ | | | u_char * {aka unsigned char *} /home/autobuild/autobuild/instance-5/output-1/host/sh4eb-buildroot-linux-musl/sysroot/usr/include/string.h:34:16: note: expected 'char * restrict' but argument is of type 'u_char *' {aka 'unsigned char *'} 34 | char *strncpy (char *__restrict, const char *__restrict, size_t); | ^ dhcpdump.c:513:30: warning: pointer targets in passing argument 2 of 'strncpy' differ in signedness [-Wpointer-sign] 513 | strncpy(buf, &data[j + 5], data[j + 1] - 3); | ^~~~~~~~~~~~ | | | u_char * {aka unsigned char *} /home/autobuild/autobuild/instance-5/output-1/host/sh4eb-buildroot-linux-musl/sysroot/usr/include/string.h:34:34: note: expected 'const char * restrict' but argument is of type 'u_char *' {aka 'unsigned char *'} 34 | char *strncpy (char *__restrict, const char *__restrict, size_t); | ^ make[1]: *** [Makefile:21: dhcpdump.o] Error 1 make[1]: Leaving directory '/home/autobuild/autobuild/instance-5/output-1/build/dhcpdump-1.8' make: *** [package/pkg-generic.mk:283: /home/autobuild/autobuild/instance-5/output-1/build/dhcpdump-1.8/.stamp_built] Error 2 make: Leaving directory '/home/autobuild/autobuild/instance-5/buildroot'