guenter                                  Tue, 03 Nov 2009 18:03:02 +0000

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

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

Changed paths:
    U   php/php-src/branches/PHP_5_2/ext/standard/pageinfo.c

Modified: php/php-src/branches/PHP_5_2/ext/standard/pageinfo.c
===================================================================
--- php/php-src/branches/PHP_5_2/ext/standard/pageinfo.c        2009-11-03 
17:58:17 UTC (rev 290178)
+++ php/php-src/branches/PHP_5_2/ext/standard/pageinfo.c        2009-11-03 
18:03:02 UTC (rev 290179)
@@ -68,11 +68,7 @@
                        BG(page_uid)   = pstat->st_uid;
                        BG(page_gid)   = pstat->st_gid;
                        BG(page_inode) = pstat->st_ino;
-#ifdef NETWARE
-                       BG(page_mtime) = (pstat->st_mtime).tv_sec;
-#else
                        BG(page_mtime) = pstat->st_mtime;
-#endif
                } else { /* handler for situations where there is no source 
file, ex. php -r */
                        BG(page_uid) = getuid();
                        BG(page_gid) = getgid();

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

Reply via email to