diff options
Diffstat (limited to 'networking/tcpudp.c')
-rw-r--r-- | networking/tcpudp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/tcpudp.c b/networking/tcpudp.c index 4e4756738..53e622b56 100644 --- a/networking/tcpudp.c +++ b/networking/tcpudp.c | |||
@@ -501,10 +501,10 @@ int tcpudpsvd_main(int argc UNUSED_PARAM, char **argv) | |||
501 | #ifdef SSLSVD | 501 | #ifdef SSLSVD |
502 | strcpy(id, utoa(pid)); | 502 | strcpy(id, utoa(pid)); |
503 | ssl_io(0, argv); | 503 | ssl_io(0, argv); |
504 | bb_perror_msg_and_die("can't execute '%s'", argv[0]); | ||
504 | #else | 505 | #else |
505 | BB_EXECVP(argv[0], argv); | 506 | BB_EXECVP_or_die(argv); |
506 | #endif | 507 | #endif |
507 | bb_perror_msg_and_die("can't execute '%s'", argv[0]); | ||
508 | } | 508 | } |
509 | 509 | ||
510 | /* | 510 | /* |