diff options
-rw-r--r-- | libbb/messages.c | 2 | ||||
-rw-r--r-- | networking/wget.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libbb/messages.c b/libbb/messages.c index 2acbc3bca..fad82c9da 100644 --- a/libbb/messages.c +++ b/libbb/messages.c | |||
@@ -22,7 +22,7 @@ | |||
22 | const char bb_banner[] ALIGN1 = BANNER; | 22 | const char bb_banner[] ALIGN1 = BANNER; |
23 | 23 | ||
24 | 24 | ||
25 | const char bb_msg_memory_exhausted[] ALIGN1 = "memory exhausted"; | 25 | const char bb_msg_memory_exhausted[] ALIGN1 = "out of memory"; |
26 | const char bb_msg_invalid_date[] ALIGN1 = "invalid date '%s'"; | 26 | const char bb_msg_invalid_date[] ALIGN1 = "invalid date '%s'"; |
27 | const char bb_msg_unknown[] ALIGN1 = "(unknown)"; | 27 | const char bb_msg_unknown[] ALIGN1 = "(unknown)"; |
28 | const char bb_msg_can_not_create_raw_socket[] ALIGN1 = "can't create raw socket"; | 28 | const char bb_msg_can_not_create_raw_socket[] ALIGN1 = "can't create raw socket"; |
diff --git a/networking/wget.c b/networking/wget.c index 8028f1230..74d90040f 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -192,7 +192,7 @@ static FILE *open_socket(len_and_sockaddr *lsa) | |||
192 | /* hopefully it understands what ESPIPE means... */ | 192 | /* hopefully it understands what ESPIPE means... */ |
193 | fp = fdopen(xconnect_stream(lsa), "r+"); | 193 | fp = fdopen(xconnect_stream(lsa), "r+"); |
194 | if (fp == NULL) | 194 | if (fp == NULL) |
195 | bb_perror_msg_and_die("fdopen"); | 195 | bb_perror_msg_and_die(bb_msg_memory_exhausted); |
196 | 196 | ||
197 | return fp; | 197 | return fp; |
198 | } | 198 | } |