Enlightenment CVS committal
Author : raster
Project : e17
Module : apps/e
Dir : e17/apps/e/src/bin
Modified Files:
e_start_main.c
Log Message:
fix bad looping condition in e_start
===================================================================
RCS file: /cvs/e/e17/apps/e/src/bin/e_start_main.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- e_start_main.c 23 Oct 2006 13:57:47 -0000 1.8
+++ e_start_main.c 3 Nov 2006 11:52:27 -0000 1.9
@@ -268,9 +268,9 @@
else
snprintf(buf, sizeof(buf), "/tmp/.e-precache");
f = fopen(buf, "r");
- if (!f) return;
+ if (!f) exit(0);
unlink(buf);
- if (fork()) return;
+ if (fork()) exit(0);
while (fgets(buf, sizeof(buf), f));
rewind(f);
while (fgets(buf, sizeof(buf), f))
-------------------------------------------------------------------------
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
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs