svn commit: branches/busybox_1_1_stable: editors libbb networking

aldot at busybox.net aldot at busybox.net
Fri May 19 12:30:48 UTC 2006


Author: aldot
Date: 2006-05-19 05:30:46 -0700 (Fri, 19 May 2006)
New Revision: 15125

Log:
- include strings.h for str{,n}casecmp
  Thanks to Rich Felker for pointing this out.


Modified:
   branches/busybox_1_1_stable/editors/awk.c
   branches/busybox_1_1_stable/editors/vi.c
   branches/busybox_1_1_stable/libbb/u_signal_names.c
   branches/busybox_1_1_stable/networking/wget.c


Changeset:
Modified: branches/busybox_1_1_stable/editors/awk.c
===================================================================
--- branches/busybox_1_1_stable/editors/awk.c	2006-05-19 12:30:00 UTC (rev 15124)
+++ branches/busybox_1_1_stable/editors/awk.c	2006-05-19 12:30:46 UTC (rev 15125)
@@ -12,6 +12,7 @@
 #include <unistd.h>
 #include <errno.h>
 #include <string.h>
+#include <strings.h>
 #include <time.h>
 #include <math.h>
 #include <ctype.h>

Modified: branches/busybox_1_1_stable/editors/vi.c
===================================================================
--- branches/busybox_1_1_stable/editors/vi.c	2006-05-19 12:30:00 UTC (rev 15124)
+++ branches/busybox_1_1_stable/editors/vi.c	2006-05-19 12:30:46 UTC (rev 15125)
@@ -68,6 +68,7 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <strings.h>
 #include <termios.h>
 #include <unistd.h>
 #include <sys/ioctl.h>

Modified: branches/busybox_1_1_stable/libbb/u_signal_names.c
===================================================================
--- branches/busybox_1_1_stable/libbb/u_signal_names.c	2006-05-19 12:30:00 UTC (rev 15124)
+++ branches/busybox_1_1_stable/libbb/u_signal_names.c	2006-05-19 12:30:46 UTC (rev 15125)
@@ -24,6 +24,7 @@
 #include <signal.h>
 #include <ctype.h>
 #include <string.h>
+#include <strings.h>
 #include <stdlib.h>
 #include <stdio.h>
 

Modified: branches/busybox_1_1_stable/networking/wget.c
===================================================================
--- branches/busybox_1_1_stable/networking/wget.c	2006-05-19 12:30:00 UTC (rev 15124)
+++ branches/busybox_1_1_stable/networking/wget.c	2006-05-19 12:30:46 UTC (rev 15125)
@@ -12,6 +12,7 @@
 #include <unistd.h>
 #include <ctype.h>
 #include <string.h>
+#include <strings.h>
 #include <unistd.h>
 #include <signal.h>
 #include <sys/ioctl.h>




More information about the busybox-cvs mailing list