1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-13 15:18:14 +00:00

Problem with directory caching, #1661, disable until it is solved.

This commit is contained in:
Nick Briggs 2024-04-13 11:12:10 -07:00
parent e2e2c7e394
commit 8d34f0869a

View File

@ -3082,8 +3082,11 @@ static int get_version_array(char *dir, char *file, FileName *varray, CurrentVAr
* If the cached version array is still valid, we can return immediately.
*/
#if 0
/* there is a (different?) problem (#1661) with the caching - disable until it's solved */
if ((sbuf.st_mtime == cache->mtime) && strcmp(dir, cache->path) == 0
&& strcmp(lcased_file, cache->file) == 0) return(1);
#endif
errno = 0;
TIMEOUT0(dirp = opendir(dir));