diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2015-10-18 23:51:36 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-10-21 05:59:15 +0000 |
commit | 76e6423213fcef13a29e4ebdba06c2485a03ecf3 (patch) | |
tree | 1573e8c53aca380de768e73e82be69c3cb375bf7 /main/wpa_supplicant/wpa_cli.sh | |
parent | 7512e1a1baff6c538d8d585f49ea3d85c05f2402 (diff) | |
download | aports-76e6423213fcef13a29e4ebdba06c2485a03ecf3.tar.bz2 aports-76e6423213fcef13a29e4ebdba06c2485a03ecf3.tar.xz |
main/wpa_supplicant: don't hardcode paths in error message
Diffstat (limited to 'main/wpa_supplicant/wpa_cli.sh')
-rw-r--r-- | main/wpa_supplicant/wpa_cli.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/wpa_supplicant/wpa_cli.sh b/main/wpa_supplicant/wpa_cli.sh index 3c7325c0e6..0a5a6cc036 100644 --- a/main/wpa_supplicant/wpa_cli.sh +++ b/main/wpa_supplicant/wpa_cli.sh @@ -9,7 +9,7 @@ if [ -z "${1}" -o -z "${2}" ]; then logger -t wpa_cli "this script should be called from wpa_cli(8)" exit 1 elif ! [ -x "${IFUP}" -a -x "${IFDOWN}" ]; then - logger -t wpa_cli "/sbin/ifup or /sbin/ifdown doesn't exist" + logger -t wpa_cli "${IFUP} or ${IFDOWN} doesn't exist" exit 1 fi |