Module Name:    src
Committed By:   dholland
Date:           Mon May 30 17:00:38 UTC 2016

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

Log Message:
#if out some unreachable code that's apparently not yet supported.
PR 50886 from David Binderman.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/usr.sbin/sysinst/partman.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/partman.c
diff -u src/usr.sbin/sysinst/partman.c:1.11 src/usr.sbin/sysinst/partman.c:1.12
--- src/usr.sbin/sysinst/partman.c:1.11	Sun May 17 10:13:24 2015
+++ src/usr.sbin/sysinst/partman.c	Mon May 30 17:00:38 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: partman.c,v 1.11 2015/05/17 10:13:24 martin Exp $ */
+/*	$NetBSD: partman.c,v 1.12 2016/05/30 17:00:38 dholland Exp $ */
 
 /*
  * Copyright 2012 Eugene Lozovoy
@@ -469,9 +469,11 @@ pm_raid_set_value(menudesc *m, void *arg
 		case PMR_MENU_NUMROW:
 			process_menu(MENU_ok, deconst(MSG_raid_nomultidim));
 			return 0;
+#if 0 /* notyet */
 			msg_to_show = MSG_raid_numrow_ask;
 			out_var = &(dev_ptr->numRow);
 			break;
+#endif
 		case PMR_MENU_NUMCOL:
 			msg_to_show = MSG_raid_numcol_ask;
 			out_var = &(dev_ptr->numCol);

Reply via email to