Changeset 111
- Timestamp:
- 06/24/05 10:38:41 (3 years ago)
- Files:
-
- eaccelerator/trunk/ChangeLog (modified) (1 diff)
- eaccelerator/trunk/eaccelerator.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/ChangeLog
r110 r111 1 2005-06-24 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 * The future check is removed because mtime are only checked on changes 3 so caching files from the future isn't a problem. 4 1 5 2005-06-23 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 6 eaccelerator/trunk/eaccelerator.c
r109 r111 2997 2997 #endif 2998 2998 compile_time = time(0); 2999 if (buf.st_mtime <= compile_time && eaccelerator_debug > 0) {3000 debug_printf("[%d] EACCELERATOR: \"%s\" isn't cached becauseit's mtime is in the future.\n",2999 if (buf.st_mtime >= compile_time && eaccelerator_debug > 0) { 3000 debug_printf("[%d] EACCELERATOR: Warning: \"%s\" is cached but it's mtime is in the future.\n", 3001 3001 getpid(), file_handle->filename); 3002 3002 } … … 3008 3008 file_handle->filename == NULL || 3009 3009 eaccelerator_stat(file_handle, realname, &buf TSRMLS_CC) != 0 || 3010 buf.st_mtime >= compile_time ||3011 3010 #ifdef EACCELERATOR_USE_INODE 3012 3011 0) {