You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by du...@apache.org on 2008/03/19 07:32:15 UTC

svn commit: r638723 - /webservices/axis2/trunk/c/src/core/transport/http/sender/http_client.c

Author: dumindu
Date: Tue Mar 18 23:32:15 2008
New Revision: 638723

URL: http://svn.apache.org/viewvc?rev=638723&view=rev
Log:
fixed return type

Modified:
    webservices/axis2/trunk/c/src/core/transport/http/sender/http_client.c

Modified: webservices/axis2/trunk/c/src/core/transport/http/sender/http_client.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/transport/http/sender/http_client.c?rev=638723&r1=638722&r2=638723&view=diff
==============================================================================
--- webservices/axis2/trunk/c/src/core/transport/http/sender/http_client.c (original)
+++ webservices/axis2/trunk/c/src/core/transport/http/sender/http_client.c Tue Mar 18 23:32:15 2008
@@ -601,7 +601,7 @@
     const axis2_http_client_t * client,
     const axutil_env_t * env)
 {
-    AXIS2_PARAM_CHECK(env->error, client, AXIS2_FAILURE);
+    AXIS2_PARAM_CHECK(env->error, client, NULL);
     return client->url;
 }
 
@@ -673,7 +673,7 @@
     const axis2_http_client_t * client,
     const axutil_env_t * env)
 {
-    AXIS2_PARAM_CHECK(env->error, client, AXIS2_FAILURE);
+    AXIS2_PARAM_CHECK(env->error, client, NULL);
     return client->proxy_host_port;
 }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org