]> granicus.if.org Git - php/commitdiff
removed now obsolete NetWare hack since I fixed this
authorGuenter Knauf <guenter@php.net>
Tue, 3 Nov 2009 18:03:02 +0000 (18:03 +0000)
committerGuenter Knauf <guenter@php.net>
Tue, 3 Nov 2009 18:03:02 +0000 (18:03 +0000)
with Novell some longer time ago in their SDK header.

ext/standard/pageinfo.c

index 0cc09feb82ab77b61698f43380c3f37a0f9c037d..7a688c3afb561b34ff9034350f03d7e6aae99640 100644 (file)
@@ -68,11 +68,7 @@ PHPAPI void php_statpage(TSRMLS_D)
                        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();