ASPN ActiveState Programmer Network
ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups


Recent Messages
List Archives
About the List
List Leaders
Subscription Options

View Subscriptions
Help

View by Topic
ActiveState
.NET Framework
Open Source
Perl
PHP
Python
Tcl
Web Services
XML & XSLT

View by Category
Database
General
SOAP
System Administration
Tools
User Interfaces
Web Programming
XML Programming


MyASPN >> Mail Archive >> php-cvs
php-cvs
[PHP-CVS] cvs: php4 /ext/standard php_fopen_wrapper.c
by Ilia Alshanetsky other posts by this author
Feb 28 2003 5:26PM messages near this date
[PHP-CVS] cvs: CVSROOT / avail | [PHP-CVS] cvs: php4 /ext/openssl openssl.c
iliaa		Fri Feb 28 12:26:28 2003 EDT

  Modified files:              
    /php4/ext/standard	php_fopen_wrapper.c 
  Log:
  Fixed compiler warnings.
  
  
Index: php4/ext/standard/php_fopen_wrapper.c
diff -u php4/ext/standard/php_fopen_wrapper.c:1.34 php4/ext/standard/php_fopen_wrapper.c:1.3
5
--- php4/ext/standard/php_fopen_wrapper.c:1.34	Thu Feb 20 15:05:31 2003
+++ php4/ext/standard/php_fopen_wrapper.c	Fri Feb 28 12:26:28 2003
@@ -17,7 +17,7 @@
    |          Hartmut Holzgraefe <hholzgra@[...].net>                        |
    +----------------------------------------------------------------------+
  */
-/* $Id: php_fopen_wrapper.c,v 1.34 2003/02/20 20:05:31 pollita Exp $ */
+/* $Id: php_fopen_wrapper.c,v 1.35 2003/02/28 17:26:28 iliaa Exp $ */
 
 #include <stdio.h> 
 #include <stdlib.h> 
@@ -129,14 +129,14 @@
 	p = php_strtok_r(filterlist, "|", &token);
 	while (p) {
 		if (read_chain) {
-			if (temp_filter = php_stream_filter_create(p, "", 0, php_stream_is_persistent(stream) TS
RMLS_CC)) {
+			if ((temp_filter = php_stream_filter_create(p, "", 0, php_stream_is_persistent(stream) T
SRMLS_CC))) {
 				php_stream_filter_append(&stream-> readfilters, temp_filter);
 			} else {
 				php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to create filter (%s)\n", p);
 			}
 		}
 		if (write_chain) {
-			if (temp_filter = php_stream_filter_create(p, "", 0, php_stream_is_persistent(stream) TS
RMLS_CC)) {
+			if ((temp_filter = php_stream_filter_create(p, "", 0, php_stream_is_persistent(stream) T
SRMLS_CC))) {
 				php_stream_filter_append(&stream-> writefilters, temp_filter);
 			} else {
 				php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to create filter (%s)\n", p);



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

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState Software Inc. All rights reserved