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

Kevin Lo kevlo at FreeBSD.org
Thu Jul 7 01:22:50 UTC 2011


Author: kevlo
Date: Thu Jul  7 01:22:50 2011
New Revision: 223832
URL: http://svn.freebsd.org/changeset/base/223832

Log:
  Add an extra tab between fs_file and fs_vfstype
  
  Reviewed by:	nwhitehorn

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

Modified: head/usr.sbin/bsdinstall/partedit/partedit.c
==============================================================================
--- head/usr.sbin/bsdinstall/partedit/partedit.c	Thu Jul  7 00:46:50 2011	(r223831)
+++ head/usr.sbin/bsdinstall/partedit/partedit.c	Thu Jul  7 01:22:50 2011	(r223832)
@@ -305,7 +305,7 @@ apply_changes(struct gmesh *mesh)
 	fprintf(fstab, "# Device\tMountpoint\tFStype\tOptions\tDump\tPass#\n");
 	TAILQ_FOREACH(md, &part_metadata, metadata) {
 		if (md->fstab != NULL)
-			fprintf(fstab, "%s\t%s\t%s\t%s\t%d\t%d\n",
+			fprintf(fstab, "%s\t%s\t\t%s\t%s\t%d\t%d\n",
 			    md->fstab->fs_spec, md->fstab->fs_file,
 			    md->fstab->fs_vfstype, md->fstab->fs_mntops,
 			    md->fstab->fs_freq, md->fstab->fs_passno);


More information about the svn-src-head mailing list