summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2000-11-21 22:41:04 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2000-11-21 22:41:04 +0000
commita43ea2cdf28fb18264ce09f7a79b8f8595b78133 (patch)
tree8309f2afd2904b67f82f7db9bb91e3cc9ed9acee
parent926e64050387dbb8f86bb4d0075d0569b8ece800 (diff)
Add missing break that broke 'kill -s SIGNAME', PR #1495
Fix from Hiroyuki.HORINOKUCHI@nrj.ericsson.se
-rw-r--r--bin/ksh/c_ksh.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ksh/c_ksh.c b/bin/ksh/c_ksh.c
index c87a37918de..974d24611c2 100644
--- a/bin/ksh/c_ksh.c
+++ b/bin/ksh/c_ksh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: c_ksh.c,v 1.12 1999/06/15 01:18:33 millert Exp $ */
+/* $OpenBSD: c_ksh.c,v 1.13 2000/11/21 22:41:03 millert Exp $ */
/*
* built-in Korn commands: c_*
@@ -1211,6 +1211,7 @@ c_kill(wp)
builtin_opt.optarg);
return 1;
}
+ break;
case '?':
return 1;
}