|
From: Tony M. <ton...@ho...> - 2004-03-31 09:15:27
|
In src/client/entrance_session.c, there is something wrong on line 315 and
316. evas_hash_find(e->config->sessions.hash, e->session) seems to always
return null for me, and results in the default session always being run and
not the selected one.
Right now, my hack to work around this is to simply use e->session and not
find it in the session hashes. e->session is the actual name of the
session, so this works for me:
if(e->session!=NULL&&strcmp(e->session,"default")!=0) {
snprintf(buf, PATH_MAX, "%s %s", ENTRANCE_XSESSION, e->session);
} else
snprintf(buf, PATH_MAX, "%s", ENTRANCE_XSESSION);
Then again, I am just learning C (java guy) and don't know your code very
well. I would be happy to test any attempts to fix this :)
Tony Murray
_________________________________________________________________
MSN Toolbar provides one-click access to Hotmail from any Web page FREE
download! http://toolbar.msn.com/go/onm00200413ave/direct/01/
|