diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-07-16 16:38:44 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-07-16 16:38:44 +0000 |
commit | 7a9848f897675c4c8b026d358ac8f7023ab9d0cb (patch) | |
tree | 23ccb3a551671efb132910b74199a235ad872637 /openwrt | |
parent | 3a3dbc957a6b102f7495266ccf28ec48eccf71be (diff) | |
download | mtk-20170518-7a9848f897675c4c8b026d358ac8f7023ab9d0cb.zip mtk-20170518-7a9848f897675c4c8b026d358ac8f7023ab9d0cb.tar.gz mtk-20170518-7a9848f897675c4c8b026d358ac8f7023ab9d0cb.tar.bz2 |
fix iwconfig eth1 enc on/off
SVN-Revision: 1466
Diffstat (limited to 'openwrt')
-rw-r--r-- | openwrt/target/linux/package/wlcompat/wlcompat.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/openwrt/target/linux/package/wlcompat/wlcompat.c b/openwrt/target/linux/package/wlcompat/wlcompat.c index e96c867..037d9ce 100644 --- a/openwrt/target/linux/package/wlcompat/wlcompat.c +++ b/openwrt/target/linux/package/wlcompat/wlcompat.c @@ -459,8 +459,15 @@ static int wlcompat_ioctl(struct net_device *dev, if (index < 0) index = get_primary_key(dev); - if (wrqu->data.flags & IW_ENCODE_DISABLED) + if (wrqu->data.flags & IW_ENCODE_DISABLED) { wep = 0; + if (wl_ioctl(dev, WLC_SET_WSEC, &wep, sizeof(val)) < 0) + return -EINVAL; + return 0; + } + + if (wl_ioctl(dev, WLC_SET_WSEC, &wep, sizeof(val)) < 0) + return -EINVAL; if (wrqu->data.flags & IW_ENCODE_OPEN) wrestrict = 0; @@ -479,18 +486,11 @@ static int wlcompat_ioctl(struct net_device *dev, } if (index >= 0) - if (wl_ioctl(dev, WLC_SET_KEY_PRIMARY, &index, sizeof(index)) < 0) - return -EINVAL; + wl_ioctl(dev, WLC_SET_KEY_PRIMARY, &index, sizeof(index)); - if (wl_ioctl(dev, WLC_GET_WSEC, &val, sizeof(val)) < 0) - return -EINVAL; - val |= wep; - if (wl_ioctl(dev, WLC_SET_WSEC, &val, sizeof(val)) < 0) - return -EINVAL; - if (wrestrict >= 0) - if (wl_ioctl(dev, WLC_SET_WEP_RESTRICT, &wrestrict, sizeof(wrestrict)) < 0) - return -EINVAL; + wl_ioctl(dev, WLC_SET_WEP_RESTRICT, &wrestrict, sizeof(wrestrict)); + break; } case SIOCGIWENCODE: |