Module Name:    src
Committed By:   martin
Date:           Mon Feb 20 20:32:13 UTC 2017

Modified Files:
        src/external/bsd/blacklist/bin [netbsd-7]: blacklistctl.c

Log Message:
Pull up following revision(s) (requested by snj in ticket #1364):
        external/bsd/blacklist/bin/blacklistctl.c: revision 1.19
add 'n' to getopt


To generate a diff of this commit:
cvs rdiff -u -r1.17.2.4 -r1.17.2.5 \
    src/external/bsd/blacklist/bin/blacklistctl.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/bsd/blacklist/bin/blacklistctl.c
diff -u src/external/bsd/blacklist/bin/blacklistctl.c:1.17.2.4 src/external/bsd/blacklist/bin/blacklistctl.c:1.17.2.5
--- src/external/bsd/blacklist/bin/blacklistctl.c:1.17.2.4	Sun Dec 18 07:58:52 2016
+++ src/external/bsd/blacklist/bin/blacklistctl.c	Mon Feb 20 20:32:13 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: blacklistctl.c,v 1.17.2.4 2016/12/18 07:58:52 snj Exp $	*/
+/*	$NetBSD: blacklistctl.c,v 1.17.2.5 2017/02/20 20:32:13 martin Exp $	*/
 
 /*-
  * Copyright (c) 2015 The NetBSD Foundation, Inc.
@@ -33,7 +33,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: blacklistctl.c,v 1.17.2.4 2016/12/18 07:58:52 snj Exp $");
+__RCSID("$NetBSD: blacklistctl.c,v 1.17.2.5 2017/02/20 20:32:13 martin Exp $");
 
 #include <stdio.h>
 #include <time.h>
@@ -85,7 +85,7 @@ main(int argc, char *argv[])
 	argc--;
 	argv++;
 
-	while ((o = getopt(argc, argv, "abD:drw")) != -1)
+	while ((o = getopt(argc, argv, "abD:dnrw")) != -1)
 		switch (o) {
 		case 'a':
 			all = 1;

Reply via email to