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

Devin Teske dteske at FreeBSD.org
Mon Dec 12 20:49:50 UTC 2016


Author: dteske
Date: Mon Dec 12 20:49:49 2016
New Revision: 309939
URL: https://svnweb.freebsd.org/changeset/base/309939

Log:
  Fix incorrect use of provided API
  The result of which was incorrectly sized menu dialogs

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

Modified: head/usr.sbin/bsdinstall/scripts/wlanconfig
==============================================================================
--- head/usr.sbin/bsdinstall/scripts/wlanconfig	Mon Dec 12 20:43:09 2016	(r309938)
+++ head/usr.sbin/bsdinstall/scripts/wlanconfig	Mon Dec 12 20:49:49 2016	(r309939)
@@ -108,9 +108,8 @@ dialog_country_select()
 		}
 	}' | sort -k 2 | tr '\n' ' ' )
 
-	f_dialog_menu_size height width rows \"Regdomain selection\" \
-		\"$DIALOG_BACKTITLE\" \"Select your regdomain.\" \
-		\"\" $regdomains
+	f_dialog_menu_size height width rows "Regdomain selection" \
+		"$DIALOG_BACKTITLE" "Select your regdomain." "" $regdomains
 	regdomain=$( sh -c "$DIALOG \
 		--backtitle \"$DIALOG_BACKTITLE\" \
 		--title \"Regdomain selection\" \
@@ -122,9 +121,8 @@ dialog_country_select()
 		$height $width $rows $regdomains"
 	)
 
-	f_dialog_menu_size height width rows \"Country selection\" \
-	    \"$DIALOG_BACKTITLE\" \"Select your country.\" \
-	    \"\" $countries
+	f_dialog_menu_size height width rows "Country selection" \
+		"$DIALOG_BACKTITLE" "Select your country." "" $countries
 	country=$( sh -c "$DIALOG \
 		--backtitle \"$DIALOG_BACKTITLE\" \
 		--title \"Country selection\" \


More information about the svn-src-all mailing list