svn commit: trunk/busybox/networking

vapier at busybox.net vapier at busybox.net
Sat Sep 24 23:52:10 UTC 2005


Author: vapier
Date: 2005-09-24 16:52:09 -0700 (Sat, 24 Sep 2005)
New Revision: 11638

Log:
Cristian Ionescu-Idbohrn writes to fix a warning: networking/ifconfig.c uses an uchar ptr to work with a char ptr so change the uchar to char

Modified:
   trunk/busybox/networking/ifconfig.c


Changeset:
Modified: trunk/busybox/networking/ifconfig.c
===================================================================
--- trunk/busybox/networking/ifconfig.c	2005-09-24 23:50:14 UTC (rev 11637)
+++ trunk/busybox/networking/ifconfig.c	2005-09-24 23:52:09 UTC (rev 11638)
@@ -567,7 +567,7 @@
 /* Input an Ethernet address and convert to binary. */
 static int in_ether(char *bufp, struct sockaddr *sap)
 {
-	unsigned char *ptr;
+	char *ptr;
 	int i, j;
 	unsigned char val;
 	unsigned char c;




More information about the busybox-cvs mailing list