summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuenter Knauf <guenter@php.net>2009-11-03 17:16:45 +0000
committerGuenter Knauf <guenter@php.net>2009-11-03 17:16:45 +0000
commit44f8c63ff59b343a9a89badc37f5f8ff73f38104 (patch)
tree21b23863b47320df43fc5031badbe1912f3540b3
parentdad7ada835153fe056774820790ecdc1ee2e0e9f (diff)
downloadphp-git-44f8c63ff59b343a9a89badc37f5f8ff73f38104.tar.gz
removed now obsolete NetWare hack since I fixed this
with Novell some longer tiem ago in their SDK header.
-rw-r--r--ext/session/mod_files.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/session/mod_files.c b/ext/session/mod_files.c
index a9333fe830..6b525e7cd5 100644
--- a/ext/session/mod_files.c
+++ b/ext/session/mod_files.c
@@ -244,11 +244,7 @@ static int ps_files_cleanup_dir(const char *dirname, int maxlifetime TSRMLS_DC)
/* check whether its last access was more than maxlifet ago */
if (VCWD_STAT(buf, &sbuf) == 0 &&
-#ifdef NETWARE
- (now - sbuf.st_mtime.tv_sec) > maxlifetime) {
-#else
(now - sbuf.st_mtime) > maxlifetime) {
-#endif
VCWD_UNLINK(buf);
nrdels++;
}