mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fixed typo in comment
This commit is contained in:
parent
d463ddd3c7
commit
c8a12508c7
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue