summaryrefslogtreecommitdiff
path: root/ext/standard/pageinfo.c
diff options
context:
space:
mode:
authorGuenter Knauf <guenter@php.net>2009-11-03 21:21:34 +0000
committerGuenter Knauf <guenter@php.net>2009-11-03 21:21:34 +0000
commit824692fab8279613730cd0a8aa38301781284a39 (patch)
treef0ff438a34fc9c550239a2a5a04f749dcc6989e8 /ext/standard/pageinfo.c
parent4a95aa39890835ffe626d7243d565d82977959d2 (diff)
downloadphp-git-824692fab8279613730cd0a8aa38301781284a39.tar.gz
removed now obsolete NetWare hack since I fixed this
with Novell some longer time ago in their SDK header.
Diffstat (limited to 'ext/standard/pageinfo.c')
-rw-r--r--ext/standard/pageinfo.c4
1 files changed, 0 insertions, 4 deletions
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();