Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/bin/ksh From OpenBSD:
details: https://anonhg.NetBSD.org/src/rev/f43658819507
branches: trunk
changeset: 550923:f43658819507
user: wiz <wiz%NetBSD.org@localhost>
date: Mon Aug 25 13:23:59 2003 +0000
description:
>From OpenBSD:
date: 2000/11/21 22:41:03; author: millert; state: Exp; lines: +2 -1
Add missing break that broke 'kill -s SIGNAME', bug report #1495
Fix from Hiroyuki.HORINOKUCHI%nrj.ericsson.se@localhost
diffstat:
bin/ksh/c_ksh.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diffs (26 lines):
diff -r cc2f4957bc46 -r f43658819507 bin/ksh/c_ksh.c
--- a/bin/ksh/c_ksh.c Mon Aug 25 13:11:30 2003 +0000
+++ b/bin/ksh/c_ksh.c Mon Aug 25 13:23:59 2003 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: c_ksh.c,v 1.8 2003/06/23 11:38:52 agc Exp $ */
+/* $NetBSD: c_ksh.c,v 1.9 2003/08/25 13:23:59 wiz Exp $ */
/*
* built-in Korn commands: c_*
@@ -6,7 +6,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: c_ksh.c,v 1.8 2003/06/23 11:38:52 agc Exp $");
+__RCSID("$NetBSD: c_ksh.c,v 1.9 2003/08/25 13:23:59 wiz Exp $");
#endif
#include "sh.h"
@@ -1217,6 +1217,7 @@
builtin_opt.optarg);
return 1;
}
+ break;
case '?':
return 1;
}
Home |
Main Index |
Thread Index |
Old Index