1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-20 19:23:13 +03:00

bump wificonf version number, remove wl0_wet variable support

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2023 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2005-10-02 16:47:17 +00:00
parent 7a69f85e0f
commit cc4e5a8091
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=wificonf
PKG_RELEASE:=4
PKG_RELEASE:=5
PKG_BUILD_DIR:=$(BUILD_DIR)/wificonf

View File

@ -430,7 +430,7 @@ void set_wext_mode(skfd, ifname)
/* Set operation mode */
ap = !nvram_match(wl_var("mode"), "sta") && !nvram_match(wl_var("mode"), "wet");
infra = !nvram_disabled(wl_var("infra"));
wet = nvram_enabled(wl_var("wet")) || !nvram_match(wl_var("mode"), "wet");
wet = nvram_match(wl_var("mode"), "wet");
wrq.u.mode = (!infra ? IW_MODE_ADHOC : (ap ? IW_MODE_MASTER : (wet ? IW_MODE_REPEAT : IW_MODE_INFRA)));
IW_SET_EXT_ERR(skfd, ifname, SIOCSIWMODE, &wrq, "Set Mode");