svn commit: r301603 - head/contrib/blacklist/bin
Renato Botelho
garga at FreeBSD.org
Wed Jun 8 11:58:05 UTC 2016
Author: garga (ports committer)
Date: Wed Jun 8 11:58:03 2016
New Revision: 301603
URL: https://svnweb.freebsd.org/changeset/base/301603
Log:
Move misplaced break statement to right place
Reported by: Coverity
CID: 1304340
Reviewed by: lidl
Differential Revision: https://reviews.freebsd.org/D6749
Sponsored by: Rubicon Communications (Netgate)
Modified:
head/contrib/blacklist/bin/blacklistctl.c
Modified: head/contrib/blacklist/bin/blacklistctl.c
==============================================================================
--- head/contrib/blacklist/bin/blacklistctl.c Wed Jun 8 11:47:19 2016 (r301602)
+++ head/contrib/blacklist/bin/blacklistctl.c Wed Jun 8 11:58:03 2016 (r301603)
@@ -96,10 +96,10 @@ main(int argc, char *argv[])
break;
case 'b':
blocked = 1;
+ break;
case 'D':
dbname = optarg;
break;
- break;
case 'd':
debug++;
break;
More information about the svn-src-all
mailing list