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

Devin Teske dteske at FreeBSD.org
Tue Dec 13 01:42:15 UTC 2016


Author: dteske
Date: Tue Dec 13 01:42:13 2016
New Revision: 309967
URL: https://svnweb.freebsd.org/changeset/base/309967

Log:
  Use more generic f_yesno() from provided API

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

Modified: head/usr.sbin/bsdinstall/scripts/wlanconfig
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/wlanconfig	Tue Dec 13 01:41:06 2016	(r309966)
+++ head/usr.sbin/bsdinstall/scripts/wlanconfig	Tue Dec 13 01:42:13 2016	(r309967)
@@ -254,7 +254,7 @@ while :; do
 	$DIALOG_CANCEL)
 		# here we ask if the user wants to select the network manually
 		f_dialog_title "Network Selection"
-		f_dialog_yesno "Do you want to select the network manually?" || exit 1
+		f_yesno "Do you want to select the network manually?" || exit 1
 		f_dialog_input NETWORK "Enter SSID" || exit 1
 		ENCRYPTION=$( $DIALOG \
 			--title "$DIALOG_TITLE" \


More information about the svn-src-head mailing list