diff options
author | Manuel Munz <freifunk@somakoma.de> | 2014-07-31 20:47:34 +0000 |
---|---|---|
committer | Manuel Munz <freifunk@somakoma.de> | 2014-07-31 20:47:34 +0000 |
commit | 2b43e82d6934e845062d386c62a51cb187d01d5d (patch) | |
tree | 1875e3fbec06d5604b26eec44dcc4c98b15fbf9f | |
parent | 21b9548361e10df47b4e69fd614eb33271f08584 (diff) |
fix syntax error introduced in r10464
-rwxr-xr-x | contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_wifi.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_wifi.sh b/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_wifi.sh index 7366fe6ea..707b7b72c 100755 --- a/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_wifi.sh +++ b/contrib/package/meshwizard/files/usr/bin/meshwizard/helpers/setup_wifi.sh @@ -65,7 +65,7 @@ bssid="$($dir/helpers/gen_bssid.sh $channel $community)" ssid="$profile_ssid" if [ "$profile_ssid_scheme" == "addchannel" ]; then ssid="$ssid - ch$channel" -else if [ "$profile_ssid_scheme" == "addchannelbefore" ]; then +elif [ "$profile_ssid_scheme" == "addchannelbefore" ]; then ssid="ch$channel.$ssid" fi |