svn commit: r233904 - head/usr.sbin/bsdinstall/partedit

Nathan Whitehorn nwhitehorn at FreeBSD.org
Wed Apr 4 23:14:02 UTC 2012


Author: nwhitehorn
Date: Wed Apr  4 23:14:01 2012
New Revision: 233904
URL: http://svn.freebsd.org/changeset/base/233904

Log:
  Fix typo.
  
  Submitted by:	pawel dot worach at gmail dot com
  MFC after:	3 days

Modified:
  head/usr.sbin/bsdinstall/partedit/gpart_ops.c

Modified: head/usr.sbin/bsdinstall/partedit/gpart_ops.c
==============================================================================
--- head/usr.sbin/bsdinstall/partedit/gpart_ops.c	Wed Apr  4 23:11:55 2012	(r233903)
+++ head/usr.sbin/bsdinstall/partedit/gpart_ops.c	Wed Apr  4 23:14:01 2012	(r233904)
@@ -147,7 +147,7 @@ newfs_command(const char *fstype, char *
 				strcat(command, "-F 32 ");
 			else if (strcmp(items[i].name, "FAT16") == 0)
 				strcat(command, "-F 16 ");
-			else if (strcmp(items[i].name, "SUJ") == 0)
+			else if (strcmp(items[i].name, "FAT12") == 0)
 				strcat(command, "-F 12 ");
 		}
 	} else {


More information about the svn-src-all mailing list