]> granicus.if.org Git - php/commitdiff
Source cleanup
authorDmitry Stogov <dmitry@php.net>
Wed, 28 Jan 2004 13:31:28 +0000 (13:31 +0000)
committerDmitry Stogov <dmitry@php.net>
Wed, 28 Jan 2004 13:31:28 +0000 (13:31 +0000)
ext/soap/php_http.c
ext/soap/php_xml.c

index a56a542d4167b20c5f28ced5e2a515896be50a70..96034dbbbb218155264df4a48b953addbd1355f0 100644 (file)
@@ -386,7 +386,7 @@ int get_http_soap_response(zval *this_ptr, char **buffer, int *buffer_len TSRMLS
 
                        if (sempos != NULL) {
                                cookie_len = sempos-(eqpos+1);
-                       } else {        
+                       } else {
                                cookie_len = strlen(cookie)-(eqpos-cookie)-1;
                        }
 
index 5e55e467b6f6108e6d547859965c11e354ee656d..368caf30a356553f5233103eab140f836b1729c9 100644 (file)
@@ -160,12 +160,12 @@ xmlNodePtr check_and_resolve_href(xmlNodePtr data)
                        if (href->children->content[0] == '#') {
                                xmlNodePtr ret = get_node_with_attribute_recursive(data->doc->children, NULL, "id", &href->children->content[1]);
                                if (!ret) {
-                                       php_error(E_ERROR,"Unresolved reference '%s'",href->children->content);                                 
+                                       php_error(E_ERROR,"Unresolved reference '%s'",href->children->content);
                                }
                                return ret;
                        } else {
                                /*  TODO: External href....? */
-                               php_error(E_ERROR,"External reference '%s'",href->children->content);                                   
+                               php_error(E_ERROR,"External reference '%s'",href->children->content);
                        }
                }
                /* SOAP 1.2 enc:id enc:ref */
@@ -175,14 +175,14 @@ xmlNodePtr check_and_resolve_href(xmlNodePtr data)
                        if (href->children->content[0] == '#') {
                                xmlNodePtr ret = get_node_with_attribute_recursive_ex(data->doc->children, NULL, NULL, "id", &href->children->content[1], SOAP_1_2_ENC_NAMESPACE);
                                if (!ret) {
-                                       php_error(E_ERROR,"Unresolved reference '%s'",href->children->content);                                 
+                                       php_error(E_ERROR,"Unresolved reference '%s'",href->children->content);
                                } else if (ret == data) {
-                                       php_error(E_ERROR,"Violation of id and ref information items '%s'",href->children->content);                                    
+                                       php_error(E_ERROR,"Violation of id and ref information items '%s'",href->children->content);
                                }
                                return ret;
                        } else {
                                /*  TODO: External href....? */
-                               php_error(E_ERROR,"External reference '%s'",href->children->content);                                   
+                               php_error(E_ERROR,"External reference '%s'",href->children->content);
                        }
                }
        }