svn commit: r218095 - user/nwhitehorn/bsdinstall/partedit

Nathan Whitehorn nwhitehorn at FreeBSD.org
Sun Jan 30 15:10:58 UTC 2011


Author: nwhitehorn
Date: Sun Jan 30 15:10:58 2011
New Revision: 218095
URL: http://svn.freebsd.org/changeset/base/218095

Log:
  Do not show (null) for blank labels.
  
  Submitted by:	brucec

Modified:
  user/nwhitehorn/bsdinstall/partedit/gpart_ops.c

Modified: user/nwhitehorn/bsdinstall/partedit/gpart_ops.c
==============================================================================
--- user/nwhitehorn/bsdinstall/partedit/gpart_ops.c	Sun Jan 30 15:05:10 2011	(r218094)
+++ user/nwhitehorn/bsdinstall/partedit/gpart_ops.c	Sun Jan 30 15:10:58 2011	(r218095)
@@ -374,7 +374,7 @@ gpart_edit(struct gprovider *pp)
 			oldtype = gc->lg_val;
 			items[0].text = gc->lg_val;
 		}
-		if (strcmp(gc->lg_name, "label") == 0) {
+		if (strcmp(gc->lg_name, "label") == 0 && gc->lg_val != NULL) {
 			hadlabel = 1;
 			items[3].text = gc->lg_val;
 		}


More information about the svn-src-user mailing list