guenter                                  Tue, 03 Nov 2009 17:16:45 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=290174

Log:
removed now obsolete NetWare hack since I fixed this
with Novell some longer tiem ago in their SDK header.

Changed paths:
    U   php/php-src/branches/PHP_5_2/ext/session/mod_files.c

Modified: php/php-src/branches/PHP_5_2/ext/session/mod_files.c
===================================================================
--- php/php-src/branches/PHP_5_2/ext/session/mod_files.c        2009-11-03 
17:11:09 UTC (rev 290173)
+++ php/php-src/branches/PHP_5_2/ext/session/mod_files.c        2009-11-03 
17:16:45 UTC (rev 290174)
@@ -244,11 +244,7 @@

                                /* 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++;
                                }

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to