libs/iwinfo: probe madwifi first, poking wifi0 with wl ioctls results in bus error

This commit is contained in:
Jo-Philipp Wich 2009-09-23 18:03:09 +00:00
parent 3c8728390f
commit 9fde34000d

View file

@ -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");