[BusyBox-cvs] busybox/networking wget.c,1.58,1.59

Erik Andersen andersen at busybox.net
Thu Sep 11 08:25:16 UTC 2003


Update of /var/cvs/busybox/networking
In directory winder:/tmp/cvs-serv14032/networking

Modified Files:
	wget.c 
Log Message:
Patch from Philip Blundell:

On Thu, 2003-09-11 at 01:09, Glenn McGrath wrote:
> Applied

Thanks.  Unfortunately there was one small bug in that last patch.
Could you apply this one as well?

p.



Index: wget.c
===================================================================
RCS file: /var/cvs/busybox/networking/wget.c,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -d -r1.58 -r1.59
--- wget.c	10 Sep 2003 23:52:15 -0000	1.58
+++ wget.c	11 Sep 2003 08:25:11 -0000	1.59
@@ -565,7 +565,7 @@
 		char *ep;
 
 		ep = h->host + 1;
-		while (*ep == ':' || isdigit (*ep))
+		while (*ep == ':' || isxdigit (*ep))
 			ep++;
 		if (*ep == ']') {
 			h->host++;




More information about the busybox-cvs mailing list