diff options
Diffstat (limited to 'networking/isrv.c')
-rw-r--r-- | networking/isrv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/isrv.c b/networking/isrv.c index 97f5c6d4e..0e3f10f9a 100644 --- a/networking/isrv.c +++ b/networking/isrv.c | |||
@@ -185,7 +185,7 @@ static void handle_accept(isrv_state_t *state, int fd) | |||
185 | /* Most probably someone gave us wrong fd type | 185 | /* Most probably someone gave us wrong fd type |
186 | * (for example, non-socket). Don't want | 186 | * (for example, non-socket). Don't want |
187 | * to loop forever. */ | 187 | * to loop forever. */ |
188 | bb_perror_msg_and_die("accept"); | 188 | bb_simple_perror_msg_and_die("accept"); |
189 | } | 189 | } |
190 | 190 | ||
191 | DPRINTF("new_peer(%d)", newfd); | 191 | DPRINTF("new_peer(%d)", newfd); |
@@ -311,7 +311,7 @@ void isrv_run( | |||
311 | 311 | ||
312 | if (n < 0) { | 312 | if (n < 0) { |
313 | if (errno != EINTR) | 313 | if (errno != EINTR) |
314 | bb_perror_msg("select"); | 314 | bb_simple_perror_msg("select"); |
315 | continue; | 315 | continue; |
316 | } | 316 | } |
317 | 317 | ||