Just noticed the following changes:

Index: build_config.sh.in
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/entrance/data/config/build_config.sh.in,v
retrieving revision 1.17
retrieving revision 1.18
diff -r1.17 -r1.18
53,54c53,54
< ecore_config -c $DB -k /entrance/daemon/xserver -s "/usr/X11R6/bin/X -quiet -nolisten tcp"
< ecore_config -c $DB -k /entrance/daemon/attempts -i 5
---
> ecore_config -c $DB -k /entranced/xserver -s "/usr/X11R6/bin/X -quiet -nolisten tcp"
> ecore_config -c $DB -k /entranced/attempts -i 5


But src/daemon/spawner.c is still not updated to get the two variables from the new "key"!

I have attached a cvs diff that should be applied to the spawner.c file. If the update is not yet in process.

Cheers,
Phuah Yee Keat
Index: spawner.c
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/entrance/src/daemon/spawner.c,v
retrieving revision 1.26
diff -u -r1.26 spawner.c
--- spawner.c   9 Dec 2005 14:00:11 -0000       1.26
+++ spawner.c   20 Dec 2005 02:57:47 -0000
@@ -76,13 +76,13 @@
 
    d = calloc(1, sizeof(Entranced_Display));
 
-   ecore_config_string_default("/entrance/daemon/xserver", DEFAULT_X_SERVER);
-   ecore_config_int_default("/entrance/daemon/attempts", 5);
+   ecore_config_string_default("/entranced/xserver", DEFAULT_X_SERVER);
+   ecore_config_int_default("/entranced/attempts", 5);
 
    ecore_config_file_load(PACKAGE_CFG_DIR "/entrance_config.cfg");
 
-   d->xprog = ecore_config_string_get("/entrance/daemon/xserver");
-   d->attempts = ecore_config_int_get("/entrance/daemon/attempts");
+   d->xprog = ecore_config_string_get("/entranced/xserver");
+   d->attempts = ecore_config_int_get("/entranced/attempts");
 
    d->status = NOT_RUNNING;
    d->auth_en = 1;

Reply via email to