svn commit: r230804 - head/usr.sbin/bsdinstall/scripts

Kevin Lo kevlo at FreeBSD.org
Tue Jan 31 05:49:50 UTC 2012


Author: kevlo
Date: Tue Jan 31 05:49:49 2012
New Revision: 230804
URL: http://svn.freebsd.org/changeset/base/230804

Log:
  Fix a whitespace nit
  
  Reviewed by:	bz

Modified:
  head/usr.sbin/bsdinstall/scripts/netconfig_ipv4

Modified: head/usr.sbin/bsdinstall/scripts/netconfig_ipv4
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/netconfig_ipv4	Tue Jan 31 03:58:26 2012	(r230803)
+++ head/usr.sbin/bsdinstall/scripts/netconfig_ipv4	Tue Jan 31 05:49:49 2012	(r230804)
@@ -73,7 +73,7 @@ exec 3>&-
 
 echo $INTERFACE $IF_CONFIG | 
     awk -v prefix="$IFCONFIG_PREFIX" '{
-	printf("ifconfig_%s=\"%s inet %s netmask %s\"\n", $1, prefix, $2, $3);
+	printf("ifconfig_%s=\"%s\inet %s netmask %s\"\n", $1, prefix, $2, $3);
 	printf("defaultrouter=\"%s\"\n", $4);
     }' >> $BSDINSTALL_TMPETC/._rc.conf.net
 


More information about the svn-src-all mailing list