mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
'nas' requires probe of 'wds' devices to be successful; so don't fail them. Signed-off-by: Nathan Hintz <nlhintz@hotmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38763 3c298f89-4303-0410-b956-a3cf2f4a3e73
12 lines
268 B
Diff
12 lines
268 B
Diff
--- a/shared/wl.c
|
|
+++ b/shared/wl.c
|
|
@@ -27,7 +27,7 @@ wl_probe(char *name)
|
|
{
|
|
int ret, val;
|
|
|
|
- if ((name[0] != 'w') || (name[1] != 'l'))
|
|
+ if ((name[0] != 'w') || ((name[1] != 'l') && ((name[1] != 'd') || (name[2] != 's'))))
|
|
return -1;
|
|
|
|
/* Check interface */
|