From c582cbcb61e231c5993b94476d19c04fbd8d2e35 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 27 Oct 2009 21:43:34 +0000 Subject: [PATCH] libs/iwinfo: treat wifiX as wireless iface in dummy backend --- libs/iwinfo/src/dummy.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/iwinfo/src/dummy.lua b/libs/iwinfo/src/dummy.lua index 75fb4baf2..290d0773b 100644 --- a/libs/iwinfo/src/dummy.lua +++ b/libs/iwinfo/src/dummy.lua @@ -1,7 +1,8 @@ module "iwinfo" function type(x) - if x:match("^wlan%d") or x:match("^wl%d") or x:match("^ath%d") then + if x:match("^wlan%d") or x:match("^wl%d") or + x:match("^wifi%d") or x:match("^ath%d") then return "dummy" end end -- 2.11.0