svn commit: r242119 - head/usr.sbin/bsdconfig/networking/share

Devin Teske dteske at FreeBSD.org
Fri Oct 26 02:50:15 UTC 2012


Author: dteske
Date: Fri Oct 26 02:50:14 2012
New Revision: 242119
URL: http://svn.freebsd.org/changeset/base/242119

Log:
  Remove unnecessary quotation to clean things up.
  
  Approved by:	adrian (co-mentor) (implicit)

Modified:
  head/usr.sbin/bsdconfig/networking/share/device.subr

Modified: head/usr.sbin/bsdconfig/networking/share/device.subr
==============================================================================
--- head/usr.sbin/bsdconfig/networking/share/device.subr	Fri Oct 26 02:49:12 2012	(r242118)
+++ head/usr.sbin/bsdconfig/networking/share/device.subr	Fri Oct 26 02:50:14 2012	(r242119)
@@ -243,7 +243,7 @@ f_dialog_menu_netdev()
 				}
 			' )
 			printf "'%s%s' '%s'\n" \
-				"$ifn" "${active:+*}" "$(f_device_desc "$ifn")"
+				$ifn "${active:+*}" "$( f_device_desc $ifn )"
 		done
 	)
 	if [ ! "$interfaces" ]; then


More information about the svn-src-all mailing list