svn commit: trunk/busybox/networking
vda at busybox.net
vda at busybox.net
Thu Feb 1 01:53:26 UTC 2007
Author: vda
Date: 2007-01-31 17:53:25 -0800 (Wed, 31 Jan 2007)
New Revision: 17694
Log:
correct wget's comment
Modified:
trunk/busybox/networking/wget.c
Changeset:
Modified: trunk/busybox/networking/wget.c
===================================================================
--- trunk/busybox/networking/wget.c 2007-02-01 01:51:36 UTC (rev 17693)
+++ trunk/busybox/networking/wget.c 2007-02-01 01:53:25 UTC (rev 17694)
@@ -535,7 +535,7 @@
p = strchr(h->host, '?'); if (!sp || (p && sp > p)) sp = p;
p = strchr(h->host, '#'); if (!sp || (p && sp > p)) sp = p;
if (!sp) {
- /* gcc 4.1.1 bug: h->path = "" puts "" in rodata! */
+ /* must be writable because of bb_get_last_path_component() */
static char nullstr[] = "";
h->path = nullstr;
} else if (*sp == '/') {
More information about the busybox-cvs
mailing list