Date: Tue, 13 Dec 2016 01:42:13 +0000 (UTC) From: Devin Teske <dteske@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r309967 - head/usr.sbin/bsdinstall/scripts Message-ID: <201612130142.uBD1gDBB046289@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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" \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612130142.uBD1gDBB046289>