From: Guenter Knauf Date: Tue, 3 Nov 2009 17:16:45 +0000 (+0000) Subject: removed now obsolete NetWare hack since I fixed this X-Git-Tag: php-5.2.12RC1~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=44f8c63ff59b343a9a89badc37f5f8ff73f38104;p=php removed now obsolete NetWare hack since I fixed this with Novell some longer tiem ago in their SDK header. --- 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++; }