mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 23:46:16 +02:00
[package] 6in4: fix logic fail in previous commit
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22897 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
bcab7d9363
commit
bd94e8e047
@ -32,7 +32,7 @@ if [ "$ACTION" = ifup ]; then
|
||||
config_get password "$cfg" password
|
||||
|
||||
[ -n "$tunnelid" ] && [ -n "$username" ] && [ -n "$password" ] && {
|
||||
[ "${#password}" == 32 -a -z "${password//[a-f0-9]/}" ] && {
|
||||
[ "${#password}" == 32 -a -z "${password//[a-f0-9]/}" ] || {
|
||||
password="$(echo -n "$password" | md5sum)"; password="${password%% *}"
|
||||
}
|
||||
uci_set_state network "$cfg" ipaddr "$wanip"
|
||||
|
Loading…
Reference in New Issue
Block a user