Changeset 227
- Timestamp:
- 07/02/06 10:59:17 (2 years ago)
- Files:
-
- eaccelerator/trunk/ChangeLog (modified) (1 diff)
- eaccelerator/trunk/ea_info.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/ChangeLog
r224 r227 1 2006-07-02 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 3 * Made some fixes to ea_info.c to make eA compile on windows again. 4 This should fix bug #116. 5 1 6 2006-06-30 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 7 eaccelerator/trunk/ea_info.c
r223 r227 78 78 79 79 /* {{{ clear_filecache(): Helper function to eaccelerator_clear which finds diskcache entries in the hashed dirs and removes them */ 80 static int clear_filecache() {80 static void clear_filecache(TSRMLS_D) 81 81 #ifndef ZEND_WIN32 82 { 82 83 DIR *dp; 83 84 struct dirent *entry; … … 103 104 if (S_ISDIR(dirstat.st_mode)) { 104 105 chdir(entry->d_name); 105 clear_filecache( );106 clear_filecache(TSRMLS_C); 106 107 chdir(".."); 107 108 } … … 132 133 } 133 134 134 FindClose (hList);135 FindClose (hList); 135 136 } 136 137 #endif … … 318 319 319 320 chdir(EAG (cache_dir)); 320 clear_filecache( );321 clear_filecache(TSRMLS_C); 321 322 322 323 RETURN_NULL();