summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnantha Kesari H Y <hyanantha@php.net>2004-09-25 14:23:32 +0000
committerAnantha Kesari H Y <hyanantha@php.net>2004-09-25 14:23:32 +0000
commitc4b57bc16b62120bd52d42b30f960a71e2caa6e6 (patch)
treeb3d08cf31cba5694bd63d9a149ea193de7cc970e
parent595268403a4bb5d43944e43f8dd6cb5372e3d974 (diff)
downloadphp-git-c4b57bc16b62120bd52d42b30f960a71e2caa6e6.tar.gz
Now NetWare LibC supports proper stat structure no need of CLIB_STAT_PATCH and all such checks
-rw-r--r--ext/standard/link.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/standard/link.c b/ext/standard/link.c
index 42ab3d8d25..dca60529d9 100644
--- a/ext/standard/link.c
+++ b/ext/standard/link.c
@@ -83,11 +83,7 @@ PHP_FUNCTION(readlink)
PHP_FUNCTION(linkinfo)
{
zval **filename;
-#if defined(NETWARE) && defined(CLIB_STAT_PATCH)
- struct stat_libc sb;
-#else
struct stat sb;
-#endif
int ret;
if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, &filename) == FAILURE) {