summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2015-02-01 05:14:27 +0900
committerYasuo Ohgaki <yohgaki@php.net>2015-02-01 05:14:27 +0900
commitc8a12508c748a546d9dab14b3eb2c4a94ca279cc (patch)
treeeab710e05823470ea5a7c0f0664cfc9ac335b24d
parentd463ddd3c7f9cee2fb8b02cb46f21b68ab4f7922 (diff)
downloadphp-git-c8a12508c748a546d9dab14b3eb2c4a94ca279cc.tar.gz
Fixed typo in comment
-rw-r--r--ext/session/mod_files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/mod_files.c b/ext/session/mod_files.c
index a389cd3e7a..0ce73bd56c 100644
--- a/ext/session/mod_files.c
+++ b/ext/session/mod_files.c
@@ -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);