diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-10 23:25:53 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-10 23:25:53 +0000 |
commit | 067e3f031a2107c69d287d89b9543fbfe5c0a571 (patch) | |
tree | 35edda4508915e2b454d0c0ec48cd548deccd744 /applets | |
parent | 07159f0f0e2188b1ce3bf7bc6b282f08986fd5ee (diff) | |
download | busybox-w32-067e3f031a2107c69d287d89b9543fbfe5c0a571.tar.gz busybox-w32-067e3f031a2107c69d287d89b9543fbfe5c0a571.tar.bz2 busybox-w32-067e3f031a2107c69d287d89b9543fbfe5c0a571.zip |
wget: fix error message.
Bad:
wget http://127.0.0.1:81/fgdg/Makefile
Connecting to 127.0.0.1[127.0.0.1]:81
: HTTP/1.0 404 Not Foundror 404 Not Found
Good:
wget http://127.0.0.1:81/fgdg/Makefile
Connecting to 127.0.0.1[127.0.0.1]:81
get: server returned error: HTTP/1.0 404 Not Found
nslookup: fix my mistake
applets: make Bernhard Fischer <rep.nop@aon.at> happy :)
Diffstat (limited to 'applets')
-rw-r--r-- | applets/applets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/applets.c b/applets/applets.c index d8bb13303..23f9e4f92 100644 --- a/applets/applets.c +++ b/applets/applets.c | |||
@@ -20,7 +20,7 @@ | |||
20 | /* Apparently uclibc defines __GLIBC__ (compat trick?). Oh well. */ | 20 | /* Apparently uclibc defines __GLIBC__ (compat trick?). Oh well. */ |
21 | #if ENABLE_STATIC && defined(__GLIBC__) && !defined(__UCLIBC__) | 21 | #if ENABLE_STATIC && defined(__GLIBC__) && !defined(__UCLIBC__) |
22 | #warning Static linking against glibc produces buggy executables | 22 | #warning Static linking against glibc produces buggy executables |
23 | #warning (glibc doesn't cope well with ld --gc-sections). | 23 | #warning (glibc does not cope well with ld --gc-sections). |
24 | #warning See sources.redhat.com/bugzilla/show_bug.cgi?id=3400 | 24 | #warning See sources.redhat.com/bugzilla/show_bug.cgi?id=3400 |
25 | #warning Note that glibc is utterly unsuitable for static linking anyway. | 25 | #warning Note that glibc is utterly unsuitable for static linking anyway. |
26 | #endif | 26 | #endif |