comgt: fix directip auth type
authorFelix Fietkau <nbd@openwrt.org>
Fri, 26 Sep 2014 15:55:45 +0000 (15:55 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Fri, 26 Sep 2014 15:55:45 +0000 (15:55 +0000)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 42671

package/network/utils/comgt/files/directip.sh

index 2bfdf8051662a9bd8c4cbcd2a21b1765a3e8ea16..b860f1ef2719ebf92dd7603ee3c4a30f63e44a8a 100644 (file)
@@ -56,9 +56,9 @@ proto_directip_setup() {
        gcom -d "$device" -s /etc/gcom/getcarrier.gcom || return 1
 
        local auth_type=0
-       [ -z "$auth" ] && case $auth in
+       case $auth in
        pap) auth_type=1;;
-       chap) auth_type=1;;
+       chap) auth_type=2;;
        esac
 
        USE_APN="$apn" USE_USER="$username" USE_PASS="$password" USE_AUTH="$auth_type" \