Enlightenment CVS committal Author : devilhorns Project : e_modules Module : wlan
Dir : e_modules/wlan Modified Files: e_mod_main.c Log Message: Trap for device name not set in config so deleting old config should not be necessary. =================================================================== RCS file: /cvs/e/e_modules/wlan/e_mod_main.c,v retrieving revision 1.30 retrieving revision 1.31 diff -u -3 -r1.30 -r1.31 --- e_mod_main.c 2 Sep 2006 11:03:14 -0000 1.30 +++ e_mod_main.c 2 Sep 2006 11:04:21 -0000 1.31 @@ -237,8 +237,12 @@ ci = l->data; if (!ci->id) continue; - if (!strcmp (ci->id, id)) - return ci; + if (!strcmp (ci->id, id)) + { + if (!ci->device) + ci->device = evas_stringshare_add ("wlan0"); + return ci; + } } ci = E_NEW (Config_Item, 1); ci->id = evas_stringshare_add (id); ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs