diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-05-04 00:22:23 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-05-04 00:22:23 +0000 |
commit | d29145d1368d159ad1065f83824f8490dd3d16d8 (patch) | |
tree | f08bae1452b39db45e687c3ce4f113612f2bd697 /openwrt/package/wificonf | |
parent | 91ab93d31346fe42e34786775a90bd15d17de997 (diff) |
brcm-2.4 system code and driver update
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3727 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/wificonf')
-rw-r--r-- | openwrt/package/wificonf/wificonf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openwrt/package/wificonf/wificonf.c b/openwrt/package/wificonf/wificonf.c index 068090cc96..b243cfa577 100644 --- a/openwrt/package/wificonf/wificonf.c +++ b/openwrt/package/wificonf/wificonf.c @@ -281,10 +281,10 @@ static int is_new_bcom(int skfd, char *ifname) bzero(buf, 8192); bcom_ioctl(skfd, ifname, WLC_DUMP, buf, 8192); - if (strstr(buf, "3.130")) - return 1; + if (strstr(buf, "3.90")) + return 0; - return 0; + return 1; } static int bcom_get_wsec(int vif) |