Module Name:    src
Committed By:   martin
Date:           Tue Aug 19 06:49:21 UTC 2014

Modified Files:
        src/usr.sbin/sysinst: mbr.c

Log Message:
Remove (accidently) duplicated code - pointed out by coverity scan.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/usr.sbin/sysinst/mbr.c

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

Modified files:

Index: src/usr.sbin/sysinst/mbr.c
diff -u src/usr.sbin/sysinst/mbr.c:1.2 src/usr.sbin/sysinst/mbr.c:1.3
--- src/usr.sbin/sysinst/mbr.c:1.2	Sun Aug  3 16:09:38 2014
+++ src/usr.sbin/sysinst/mbr.c	Tue Aug 19 06:49:21 2014
@@ -1,4 +1,4 @@
-/*	$NetBSD: mbr.c,v 1.2 2014/08/03 16:09:38 martin Exp $ */
+/*	$NetBSD: mbr.c,v 1.3 2014/08/19 06:49:21 martin Exp $ */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -1148,8 +1148,7 @@ set_mbr_label(menudesc *m, int opt, void
 #ifdef BOOTSEL
 	if (mbri->mbrb.mbrbs_nametab[opt][0] != 0) {
 		int x, y;
-		if (opt >= MBR_PART_COUNT)
-			opt = 0;
+
 		getyx(m->mw, y, x);
 		if (x > 52) {
 			x = 52;

Reply via email to