summaryrefslogtreecommitdiff
path: root/ext/session/mod_files.c
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2015-02-01 05:15:27 +0900
committerYasuo Ohgaki <yohgaki@php.net>2015-02-01 05:15:27 +0900
commitd8803d8147a348b5ed93de25d3b47e2369687ad4 (patch)
treecf6bcfe73f0e3f82a79d6a0cb1bec364553022a1 /ext/session/mod_files.c
parentcb42fe6777fe7acd602d55b42337b64790b7cd1a (diff)
parentd9a9afa4990ede4be6dd4084b8ab550779be4f15 (diff)
downloadphp-git-d8803d8147a348b5ed93de25d3b47e2369687ad4.tar.gz
Merge branch 'PHP-5.6'
* PHP-5.6: Fixed typo in comment
Diffstat (limited to 'ext/session/mod_files.c')
-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 1e13d67e58..561d216adf 100644
--- a/ext/session/mod_files.c
+++ b/ext/session/mod_files.c
@@ -291,7 +291,7 @@ static int ps_files_cleanup_dir(const char *dirname, int maxlifetime)
/* 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);