Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/bin/csh Remove a bogus whitespace match in the builtin kill(...



details:   https://anonhg.NetBSD.org/src/rev/79b6fcd1fd0b
branches:  trunk
changeset: 473080:79b6fcd1fd0b
user:      kleink <kleink%NetBSD.org@localhost>
date:      Wed May 19 14:37:05 1999 +0000

description:
Remove a bogus whitespace match in the builtin kill(1)'s `-s' parsing;
noticed by Chris Demetriou.

diffstat:

 bin/csh/proc.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r e93601da6326 -r 79b6fcd1fd0b bin/csh/proc.c
--- a/bin/csh/proc.c    Wed May 19 14:06:59 1999 +0000
+++ b/bin/csh/proc.c    Wed May 19 14:37:05 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: proc.c,v 1.19 1999/05/09 00:00:20 cgd Exp $    */
+/*     $NetBSD: proc.c,v 1.20 1999/05/19 14:37:05 kleink Exp $ */
 
 /*-
  * Copyright (c) 1980, 1991, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)proc.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: proc.c,v 1.19 1999/05/09 00:00:20 cgd Exp $");
+__RCSID("$NetBSD: proc.c,v 1.20 1999/05/19 14:37:05 kleink Exp $");
 #endif
 #endif /* not lint */
 
@@ -1006,7 +1006,7 @@
                stderror(ERR_NAME | ERR_BADSIG);
        }
        else {
-           if (v[0][1] == 's' && (Isspace(v[0][2]) || v[0][2] == '\0'))
+           if (v[0][1] == 's' && v[0][2] == '\0')
                signame = *(++v);
            else
                signame = &v[0][1];



Home | Main Index | Thread Index | Old Index