Fix macfiltering options (#2397)
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 16 Sep 2007 13:17:47 +0000 (13:17 +0000)
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sun, 16 Sep 2007 13:17:47 +0000 (13:17 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8792 3c298f89-4303-0410-b956-a3cf2f4a3e73

package/broadcom-wl/files/lib/wifi/broadcom.sh

index cb35ef1..0bffb42 100644 (file)
@@ -72,13 +72,13 @@ scan_broadcom() {
        macfilter=0
        case "$macfilter" in
                allow|2)
-                       macfilter=allow;
+                       macfilter=2;
                ;;
                deny|1)
-                       macfilter=deny;
+                       macfilter=1;
                ;;
                disable|0)
-                       macfilter=disabled;
+                       macfilter=0;
                ;;
        esac
 }
@@ -247,7 +247,7 @@ rxant ${rxant:-3}
 txant ${txant:-3}
 
 radio ${radio:-1}
-macfilter ${macfilter:-disabled}
+macfilter ${macfilter:-0}
 maclist ${maclist:-none}
 wds none
 ${wds:+wds $wds}
This page took 0.026423 seconds and 4 git commands to generate.