wez             Sat Nov 16 19:08:42 2002 EDT

  Modified files:              (Branch: PHP_4_3)
    /php4/main  streams.c 
  Log:
  Remove debugging printf
  
  
Index: php4/main/streams.c
diff -u php4/main/streams.c:1.125.2.7 php4/main/streams.c:1.125.2.8
--- php4/main/streams.c:1.125.2.7       Sat Nov 16 19:07:33 2002
+++ php4/main/streams.c Sat Nov 16 19:08:42 2002
@@ -20,7 +20,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: streams.c,v 1.125.2.7 2002/11/17 00:07:33 iliaa Exp $ */
+/* $Id: streams.c,v 1.125.2.8 2002/11/17 00:08:42 wez Exp $ */
 
 #define _GNU_SOURCE
 #include "php.h"
@@ -48,7 +48,6 @@
 #endif
 
 #define STREAM_DEBUG 0
-
 #define STREAM_WRAPPER_PLAIN_FILES     ((php_stream_wrapper*)-1)
 
 /* {{{ some macros to help track leaks */
@@ -1343,7 +1342,6 @@
                        ret = fclose(data->file);
                }
                if (data->temp_file_name) {
-                       printf("temp: %s\n", data->temp_file_name);
                        unlink(data->temp_file_name);
                        efree(data->temp_file_name);
                }



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

Reply via email to