[package] 6in4: fix logic fail in previous commit
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22897 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
c53f742347
commit
b3e16ec2e4
|
@ -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