diff options
Diffstat (limited to 'miscutils/update.c')
-rw-r--r-- | miscutils/update.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/update.c b/miscutils/update.c index 27a04ddee..48ea02deb 100644 --- a/miscutils/update.c +++ b/miscutils/update.c @@ -62,12 +62,12 @@ extern int update_main(int argc, char **argv) flush_duration = atoi(optarg); break; default: - show_usage(); + bb_show_usage(); } } if (daemon(0, 1) < 0) - perror_msg_and_die("daemon"); + bb_perror_msg_and_die("daemon"); #ifdef OPEN_MAX for (pid = 0; pid < OPEN_MAX; pid++) close(pid); |