diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-11-21 22:41:04 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-11-21 22:41:04 +0000 |
commit | a43ea2cdf28fb18264ce09f7a79b8f8595b78133 (patch) | |
tree | 8309f2afd2904b67f82f7db9bb91e3cc9ed9acee /bin | |
parent | 926e64050387dbb8f86bb4d0075d0569b8ece800 (diff) |
Add missing break that broke 'kill -s SIGNAME', PR #1495
Fix from Hiroyuki.HORINOKUCHI@nrj.ericsson.se
Diffstat (limited to 'bin')
-rw-r--r-- | bin/ksh/c_ksh.c | 3 |
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; } |