Fixed typo in comment

This commit is contained in:
Yasuo Ohgaki 2015-02-01 05:14:27 +09:00
parent d463ddd3c7
commit c8a12508c7

View file

@ -218,7 +218,7 @@ static int ps_files_cleanup_dir(const char *dirname, int maxlifetime TSRMLS_DC)
/* NUL terminate it and */
buf[dirname_len + entry_len + 1] = '\0';
/* check whether its last access was more than maxlifet ago */
/* check whether its last access was more than maxlifetime ago */
if (VCWD_STAT(buf, &sbuf) == 0 &&
(now - sbuf.st_mtime) > maxlifetime) {
VCWD_UNLINK(buf);