From: Davide Caratti Date: Mon, 10 Sep 2018 11:00:36 +0000 (+0200) Subject: examples: Fix shellcheck warnings in wps-ap-cli X-Git-Tag: hostap_2_7~77 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2b7f46f1c7ee9f8e21ca90efc7f2a77c8c36c26f;p=thirdparty%2Fhostap.git examples: Fix shellcheck warnings in wps-ap-cli use 'printf' instead of 'echo -n', to suppress the following warning: In POSIX sh, echo flags are undefined. [SC2039] Signed-off-by: Davide Caratti --- diff --git a/wpa_supplicant/examples/wps-ap-cli b/wpa_supplicant/examples/wps-ap-cli index cc2cff2eb..15d913ef1 100755 --- a/wpa_supplicant/examples/wps-ap-cli +++ b/wpa_supplicant/examples/wps-ap-cli @@ -14,12 +14,12 @@ pbc() enter_pin() { echo "Enter a PIN from a station to be enrolled to the network." - echo -n "Enrollee PIN: " + printf "Enrollee PIN: " read pin cpin=`$CLI wps_check_pin "$pin" | tail -1` if [ "$cpin" = "FAIL-CHECKSUM" ]; then echo "Checksum digit is not valid" - echo -n "Do you want to use this PIN (y/n)? " + printf "Do you want to use this PIN (y/n)? " read resp case "$resp" in y*) @@ -52,7 +52,7 @@ main_menu() echo "3: Show current configuration" echo "0: Exit wps-ap-cli" - echo -n "Command: " + printf "Command: " read cmd case "$cmd" in