svn commit: r264489 - head/sbin/gbde

Christian Brueffer brueffer at FreeBSD.org
Tue Apr 15 07:37:57 UTC 2014


Author: brueffer
Date: Tue Apr 15 07:37:56 2014
New Revision: 264489
URL: http://svnweb.freebsd.org/changeset/base/264489

Log:
  Add a missing break in option parsing.
  
  CID:		1011452
  Found with:	Coverity Prevent(tm)
  MFC after:	1 week

Modified:
  head/sbin/gbde/gbde.c

Modified: head/sbin/gbde/gbde.c
==============================================================================
--- head/sbin/gbde/gbde.c	Tue Apr 15 06:56:59 2014	(r264488)
+++ head/sbin/gbde/gbde.c	Tue Apr 15 07:37:56 2014	(r264489)
@@ -805,6 +805,7 @@ main(int argc, char **argv)
 			break;
 		case 'i':
 			i_opt = !i_opt;
+			break;
 		case 'k':
 			k_opt = optarg;
 			break;


More information about the svn-src-all mailing list