From: Anantha Kesari H Y Date: Sat, 25 Sep 2004 14:23:32 +0000 (+0000) Subject: Now NetWare LibC supports proper stat structure no need of CLIB_STAT_PATCH and all... X-Git-Tag: PRE_NEW_VM_GEN_PATCH~223 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c4b57bc16b62120bd52d42b30f960a71e2caa6e6;p=php Now NetWare LibC supports proper stat structure no need of CLIB_STAT_PATCH and all such checks --- 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) {