hyanantha               Sat Sep 25 10:23:32 2004 EDT

  Modified files:              
    /php-src/ext/standard       link.c 
  Log:
  Now NetWare LibC supports proper stat structure no need of CLIB_STAT_PATCH and all 
such checks
  
  
http://cvs.php.net/diff.php/php-src/ext/standard/link.c?r1=1.48&r2=1.49&ty=u
Index: php-src/ext/standard/link.c
diff -u php-src/ext/standard/link.c:1.48 php-src/ext/standard/link.c:1.49
--- php-src/ext/standard/link.c:1.48    Thu Jan  8 03:17:33 2004
+++ php-src/ext/standard/link.c Sat Sep 25 10:23:32 2004
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: link.c,v 1.48 2004/01/08 08:17:33 andi Exp $ */
+/* $Id: link.c,v 1.49 2004/09/25 14:23:32 hyanantha Exp $ */
 
 #include "php.h"
 #include "php_filestat.h"
@@ -83,11 +83,7 @@
 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) {

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to