]> granicus.if.org Git - php/commitdiff
Fixed typo in comment
authorYasuo Ohgaki <yohgaki@php.net>
Sat, 31 Jan 2015 20:14:27 +0000 (05:14 +0900)
committerYasuo Ohgaki <yohgaki@php.net>
Sat, 31 Jan 2015 20:14:27 +0000 (05:14 +0900)
ext/session/mod_files.c

index a389cd3e7aa39686f2c2177bfc65e8639a0dece4..0ce73bd56c448ae35951718b7bd6789ecc67fcf4 100644 (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);