diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-14 02:23:43 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-14 02:23:43 +0000 |
commit | ea62077b850076c4d7dc3cf78ebd1888928c6ddf (patch) | |
tree | 37b7584ae40b99edb5583fbc4392b62ffdadf278 /init/init.c | |
parent | 88ca06769028e442bf873b270c176ca0e9f021f8 (diff) | |
download | busybox-w32-ea62077b850076c4d7dc3cf78ebd1888928c6ddf.tar.gz busybox-w32-ea62077b850076c4d7dc3cf78ebd1888928c6ddf.tar.bz2 busybox-w32-ea62077b850076c4d7dc3cf78ebd1888928c6ddf.zip |
add open_read_close() and similar stuff
Diffstat (limited to 'init/init.c')
-rw-r--r-- | init/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/init.c b/init/init.c index 8257b7fb0..99a11e526 100644 --- a/init/init.c +++ b/init/init.c | |||
@@ -561,7 +561,7 @@ static pid_t run(const struct init_action *a) | |||
561 | execv(cmdpath, cmd); | 561 | execv(cmdpath, cmd); |
562 | 562 | ||
563 | /* We're still here? Some error happened. */ | 563 | /* We're still here? Some error happened. */ |
564 | message(LOG | CONSOLE, "Bummer, could not run '%s': %m", cmdpath); | 564 | message(LOG | CONSOLE, "Bummer, cannot run '%s': %m", cmdpath); |
565 | _exit(-1); | 565 | _exit(-1); |
566 | } | 566 | } |
567 | sigprocmask(SIG_SETMASK, &omask, NULL); | 567 | sigprocmask(SIG_SETMASK, &omask, NULL); |