aboutsummaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-14 02:23:43 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-14 02:23:43 +0000
commit9e617927e057d79ceb2ac4869b18b1e84567dc68 (patch)
tree37b7584ae40b99edb5583fbc4392b62ffdadf278 /init
parent6147e0907e5b5e3a07a4c8976097a585faaa3895 (diff)
downloadbusybox-w32-9e617927e057d79ceb2ac4869b18b1e84567dc68.tar.gz
busybox-w32-9e617927e057d79ceb2ac4869b18b1e84567dc68.tar.bz2
busybox-w32-9e617927e057d79ceb2ac4869b18b1e84567dc68.zip
add open_read_close() and similar stuff
git-svn-id: svn://busybox.net/trunk/busybox@16377 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'init')
-rw-r--r--init/init.c2
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);