Source-Changes-HG archive

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

[src/netbsd-1-6]: src/usr.bin/pkill Pull up revision 1.5 (requested by kleink...



details:   https://anonhg.NetBSD.org/src/rev/2c95b191f6d4
branches:  netbsd-1-6
changeset: 529711:2c95b191f6d4
user:      he <he%NetBSD.org@localhost>
date:      Sat Dec 07 23:19:40 2002 +0000

description:
Pull up revision 1.5 (requested by kleink in ticket #949):
  Add missing ``-u euid'' option to optstring.  Fixes PR#18827.

diffstat:

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

diffs (27 lines):

diff -r b59cd8dd65f5 -r 2c95b191f6d4 usr.bin/pkill/pkill.c
--- a/usr.bin/pkill/pkill.c     Sat Dec 07 23:16:15 2002 +0000
+++ b/usr.bin/pkill/pkill.c     Sat Dec 07 23:19:40 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pkill.c,v 1.4 2002/03/06 12:02:18 ad Exp $     */
+/*     $NetBSD: pkill.c,v 1.4.2.1 2002/12/07 23:19:40 he Exp $ */
 
 /*-
  * Copyright (c) 2002 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: pkill.c,v 1.4 2002/03/06 12:02:18 ad Exp $");
+__RCSID("$NetBSD: pkill.c,v 1.4.2.1 2002/12/07 23:19:40 he Exp $");
 #endif /* !lint */
 
 #include <sys/types.h>
@@ -156,7 +156,7 @@
 
        criteria = 0;
 
-       while ((ch = getopt(argc, argv, "G:P:U:d:fg:lns:t:vx")) != -1)
+       while ((ch = getopt(argc, argv, "G:P:U:d:fg:lns:t:u:vx")) != -1)
                switch (ch) {
                case 'G':
                        makelist(&rgidlist, LT_GROUP, optarg);



Home | Main Index | Thread Index | Old Index