svn commit: r252086 - head/usr.sbin/bsdconfig/share/media

Devin Teske dteske at FreeBSD.org
Sat Jun 22 03:54:18 UTC 2013


Author: dteske
Date: Sat Jun 22 03:54:17 2013
New Revision: 252086
URL: http://svnweb.freebsd.org/changeset/base/252086

Log:
  Fix a code typo that prevented the probing of the current defaultrouter
  in-order to pre-populate the editor.

Modified:
  head/usr.sbin/bsdconfig/share/media/tcpip.subr

Modified: head/usr.sbin/bsdconfig/share/media/tcpip.subr
==============================================================================
--- head/usr.sbin/bsdconfig/share/media/tcpip.subr	Sat Jun 22 03:50:14 2013	(r252085)
+++ head/usr.sbin/bsdconfig/share/media/tcpip.subr	Sat Jun 22 03:54:17 2013	(r252086)
@@ -593,7 +593,7 @@ f_ifconfig_netmask()
 # This function is a two-parter. Below is the awk(1) portion of the function,
 # afterward is the sh(1) function which utilizes the below awk script.
 #
-f_route_get_default='
+f_route_get_default_awk='
 BEGIN { found = 0 }
 ( $1 == "gateway:" ) \
 {


More information about the svn-src-head mailing list