diff options
author | Denys Vlasenko | 2011-02-10 10:01:49 +0100 |
---|---|---|
committer | Denys Vlasenko | 2011-02-10 10:01:49 +0100 |
commit | dee0fc9da1b53efc4c5e0596428dda556995bc26 (patch) | |
tree | 7b3e0fcbb91271c5e98a991e1e1d3835981f8219 /networking | |
parent | 0fac2f7b5b0bacf2c1ad73215acb312e012f0227 (diff) | |
download | busybox-dee0fc9da1b53efc4c5e0596428dda556995bc26.zip busybox-dee0fc9da1b53efc4c5e0596428dda556995bc26.tar.gz |
save 10 bytes on strings
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/wget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/wget.c b/networking/wget.c index 8028f12..74d9004 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -192,7 +192,7 @@ static FILE *open_socket(len_and_sockaddr *lsa) /* hopefully it understands what ESPIPE means... */ fp = fdopen(xconnect_stream(lsa), "r+"); if (fp == NULL) - bb_perror_msg_and_die("fdopen"); + bb_perror_msg_and_die(bb_msg_memory_exhausted); return fp; } |