summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Charnier <charnier@FreeBSD.org>2003-06-09 19:21:35 +0000
committerPhilippe Charnier <charnier@FreeBSD.org>2003-06-09 19:21:35 +0000
commit3adb4d32aa2a71bd88c9d0dc831cf0cab0295d05 (patch)
tree088f46dfef311a71bd3361a2a1dc26fae0b3569c
parent3ba993a100473d5fa1c04ad93c1dcdda2c7e6687 (diff)
Notes
-rw-r--r--usr.bin/apply/apply.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/usr.bin/apply/apply.c b/usr.bin/apply/apply.c
index e75c2ee05fb3..25ba374d97e9 100644
--- a/usr.bin/apply/apply.c
+++ b/usr.bin/apply/apply.c
@@ -242,7 +242,6 @@ exec_shell(const char *command, char *use_shell, char *use_name)
switch(pid = vfork()) {
case -1: /* error */
err(1, "vfork");
- /* NOTREACHED */
case 0: /* child */
(void)sigsetmask(omask);
execl(use_shell, use_name, "-c", command, (char *)NULL);