mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
wlcompat probe bugfix
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@809 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
d4993b71f1
commit
c1a7654e59
@ -698,12 +698,10 @@ static int __init wlcompat_init()
|
||||
int found = 0, i;
|
||||
char *devname = "eth0";
|
||||
|
||||
while (!found && devname[3] < '3') {
|
||||
devname[3]++;
|
||||
|
||||
dev = dev_get_by_name(devname);
|
||||
while (!found && (dev = dev_get_by_name(devname))) {
|
||||
if ((wl_ioctl(dev, WLC_GET_MAGIC, &i, sizeof(i)) == 0) && i == WLC_IOCTL_MAGIC)
|
||||
found = 1;
|
||||
devname[3]++;
|
||||
}
|
||||
|
||||
if (!found) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user