From: Matej U. <mat...@us...> - 2006-09-15 10:38:28
|
Update of /cvsroot/mod-c/mod_c/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv17033/src Modified Files: ChangeLog mod_c.c Log Message: Fixed a wrong check of failure. Index: mod_c.c =================================================================== RCS file: /cvsroot/mod-c/mod_c/src/mod_c.c,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** mod_c.c 13 Sep 2006 14:58:36 -0000 1.23 --- mod_c.c 15 Sep 2006 10:38:25 -0000 1.24 *************** *** 93,97 **** // Try to load the handle to the loaded library from the cache ! if (GetEHTMLEntry(config->ehtml_cache, r->filename, &e) <= 0) { // If it was not present in cache --- 93,97 ---- // Try to load the handle to the loaded library from the cache ! if (GetEHTMLEntry(config->ehtml_cache, r->filename, &e) < 0) { // If it was not present in cache Index: ChangeLog =================================================================== RCS file: /cvsroot/mod-c/mod_c/src/ChangeLog,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ChangeLog 12 Sep 2006 22:42:07 -0000 1.4 --- ChangeLog 15 Sep 2006 10:38:25 -0000 1.5 *************** *** 1,2 **** --- 1,6 ---- + 2006-09-15 Matej Urbas <mat...@gm...> + + * mod_c.c: Fixed the fail-check. + 2006-08-25 Gonzalo Arana <gon...@gm...> |