diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2015-02-01 05:14:56 +0900 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2015-02-01 05:14:56 +0900 |
commit | d9a9afa4990ede4be6dd4084b8ab550779be4f15 (patch) | |
tree | a0f64228136901181a9553f50110b523dc3ed387 /ext/session | |
parent | 7b06cc8d22a8e2f0385bb2395892b863d2ba876e (diff) | |
parent | c8a12508c748a546d9dab14b3eb2c4a94ca279cc (diff) | |
download | php-git-d9a9afa4990ede4be6dd4084b8ab550779be4f15.tar.gz |
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5:
Fixed typo in comment
Diffstat (limited to 'ext/session')
-rw-r--r-- | ext/session/mod_files.c | 2 |
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); |