[arch-projects] [netcfg] [PATCH] wifi-menu: fix name of wireless key variable
Dialog returns the wireless key in variable $key. Uppercase 'KEY' is used later to create the profile. Signed-off-by: Tasos Latsas <tlatsas2000@gmail.com> --- scripts/wifi-menu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/wifi-menu b/scripts/wifi-menu index e182f25..ba8eb47 100755 --- a/scripts/wifi-menu +++ b/scripts/wifi-menu @@ -115,7 +115,7 @@ create_profile() [[ "$OBSCURE" ]] && box="--insecure --passwordbox" || box="--inputbox" msg="Enter $security security key for\n'$1'" key=$(dialog $box "$msg" 10 40 --stdout) || return $? - [[ "${#KEY}" -ge 8 && "${#KEY}" -le 63 ]] || return 4 + [[ "${#key}" -ge 8 && "${#key}" -le 63 ]] || return 4 if [[ "$OBSCURE" ]]; then key=$(wpa_passphrase "$1" "$key" | grep -m 1 "^[[:space:]]*psk=") key="KEY=${key#*psk=}" -- 1.7.11.1
On Sat, Jun 30, 2012 at 10:07 AM, Tasos Latsas <tlatsas2000@gmail.com> wrote:
Dialog returns the wireless key in variable $key. Uppercase 'KEY' is used later to create the profile.
Wow, that was stupid. What is the process of getting your patches reviewed? The error had gone unnoticed in testing (wifi-menu probably isn't yet well-known). Due to this, we'll see a new version soon :-P.
participants (2)
-
Jouke Witteveen
-
Tasos Latsas