iliaa           Sun Mar 27 10:54:00 2005 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src/ext/standard       file.c 
  Log:
  MFH: revert copy patch.
  
  
http://cvs.php.net/diff.php/php-src/ext/standard/file.c?r1=1.279.2.69&r2=1.279.2.70&ty=u
Index: php-src/ext/standard/file.c
diff -u php-src/ext/standard/file.c:1.279.2.69 
php-src/ext/standard/file.c:1.279.2.70
--- php-src/ext/standard/file.c:1.279.2.69      Wed Mar  2 22:31:59 2005
+++ php-src/ext/standard/file.c Sun Mar 27 10:53:59 2005
@@ -21,7 +21,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: file.c,v 1.279.2.69 2005/03/03 03:31:59 iliaa Exp $ */
+/* $Id: file.c,v 1.279.2.70 2005/03/27 15:53:59 iliaa Exp $ */
 
 /* Synced with php 3.0 revision 1.218 1999-06-16 [ssb] */
 
@@ -2141,12 +2141,6 @@
 {
        php_stream *srcstream = NULL, *deststream = NULL;
        int ret = FAILURE;
-       struct stat src_s, dest_s;
-
-       /* safety check to ensure that source & destination files are not the 
same file */
-       if (stat(src, &src_s) || (stat(dest, &dest_s) == 0 && src_s.st_ino == 
dest_s.st_ino)) {
-               return ret;
-       }
 
        srcstream = php_stream_open_wrapper(src, "rb",
                                STREAM_DISABLE_OPEN_BASEDIR | REPORT_ERRORS,

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

Reply via email to