From: Guenter Knauf Date: Tue, 3 Nov 2009 18:03:02 +0000 (+0000) Subject: removed now obsolete NetWare hack since I fixed this X-Git-Tag: php-5.2.12RC1~26 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=389811a6c531228cf90b8de35c7536e240cfa906;p=php removed now obsolete NetWare hack since I fixed this with Novell some longer time ago in their SDK header. --- diff --git a/ext/standard/pageinfo.c b/ext/standard/pageinfo.c index 0cc09feb82..7a688c3afb 100644 --- a/ext/standard/pageinfo.c +++ b/ext/standard/pageinfo.c @@ -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();