From 9fde34000dca2a7bd58f48e1c37e389bb98136a6 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Wed, 23 Sep 2009 18:03:09 +0000 Subject: [PATCH] libs/iwinfo: probe madwifi first, poking wifi0 with wl ioctls results in bus error --- libs/iwinfo/src/iwinfo_lualib.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/iwinfo/src/iwinfo_lualib.c b/libs/iwinfo/src/iwinfo_lualib.c index 2efc7871a..8eb4ad5dc 100644 --- a/libs/iwinfo/src/iwinfo_lualib.c +++ b/libs/iwinfo/src/iwinfo_lualib.c @@ -23,12 +23,12 @@ static int iwinfo_L_type(lua_State *L) { const char *ifname = luaL_checkstring(L, 1); - if( wl_probe(ifname) ) - lua_pushstring(L, "wl"); - - else if( madwifi_probe(ifname) ) + if( madwifi_probe(ifname) ) lua_pushstring(L, "madwifi"); + else if( wl_probe(ifname) ) + lua_pushstring(L, "wl"); + else if( wext_probe(ifname) ) lua_pushstring(L, "wext"); -- 2.25.1