Module Name:    src
Committed By:   christos
Date:           Mon Feb  2 22:01:55 UTC 2015

Modified Files:
        src/external/bsd/blacklist/bin: blacklistctl.c

Log Message:
CID/1267866: Missing break in switch


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 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.16 src/external/bsd/blacklist/bin/blacklistctl.c:1.17
--- src/external/bsd/blacklist/bin/blacklistctl.c:1.16	Tue Jan 27 14:40:36 2015
+++ src/external/bsd/blacklist/bin/blacklistctl.c	Mon Feb  2 17:01:55 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: blacklistctl.c,v 1.16 2015/01/27 19:40:36 christos Exp $	*/
+/*	$NetBSD: blacklistctl.c,v 1.17 2015/02/02 22:01:55 christos Exp $	*/
 
 /*-
  * Copyright (c) 2015 The NetBSD Foundation, Inc.
@@ -33,7 +33,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: blacklistctl.c,v 1.16 2015/01/27 19:40:36 christos Exp $");
+__RCSID("$NetBSD: blacklistctl.c,v 1.17 2015/02/02 22:01:55 christos Exp $");
 
 #include <stdio.h>
 #include <time.h>
@@ -99,6 +99,7 @@ main(int argc, char *argv[])
 			break;
 		case 'n':
 			noheader = 1;
+			break;
 		case 'r':
 			remain = 1;
 			break;

Reply via email to