diff options
author | dteske <dteske@FreeBSD.org> | 2013-06-22 03:54:17 +0000 |
---|---|---|
committer | dteske <dteske@FreeBSD.org> | 2013-06-22 03:54:17 +0000 |
commit | 0c17385f8d65828ea1606a76904f36f9fdb4c41c (patch) | |
tree | ca3379f86487c64a0704c2746c4a9f5d70f82ab0 /usr.sbin/bsdconfig | |
parent | 68a4ce1f3f23f3eb9d0686b898a29f72a2773c3c (diff) | |
download | FreeBSD-src-0c17385f8d65828ea1606a76904f36f9fdb4c41c.zip FreeBSD-src-0c17385f8d65828ea1606a76904f36f9fdb4c41c.tar.gz |
Fix a code typo that prevented the probing of the current defaultrouter
in-order to pre-populate the editor.
Diffstat (limited to 'usr.sbin/bsdconfig')
-rw-r--r-- | usr.sbin/bsdconfig/share/media/tcpip.subr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/bsdconfig/share/media/tcpip.subr b/usr.sbin/bsdconfig/share/media/tcpip.subr index 2d8464b..6a02a4f 100644 --- a/usr.sbin/bsdconfig/share/media/tcpip.subr +++ b/usr.sbin/bsdconfig/share/media/tcpip.subr @@ -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:" ) \ { |