You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2007/03/16 04:54:44 UTC

svn commit: r518855 - /webservices/axis2/trunk/c/modules/core/engine/conf.c

Author: dinesh
Date: Thu Mar 15 20:54:44 2007
New Revision: 518855

URL: http://svn.apache.org/viewvc?view=rev&rev=518855
Log:
fixed build break

Modified:
    webservices/axis2/trunk/c/modules/core/engine/conf.c

Modified: webservices/axis2/trunk/c/modules/core/engine/conf.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/engine/conf.c?view=diff&rev=518855&r1=518854&r2=518855
==============================================================================
--- webservices/axis2/trunk/c/modules/core/engine/conf.c (original)
+++ webservices/axis2/trunk/c/modules/core/engine/conf.c Thu Mar 15 20:54:44 2007
@@ -788,7 +788,7 @@
     const axis2_conf_t *conf,
     const axis2_env_t *env)
 {
-    return conf->transports_in;
+    return (axis2_transport_in_desc_t **)conf->transports_in;
 }
 
 AXIS2_EXTERN axis2_module_desc_t *AXIS2_CALL
@@ -877,7 +877,7 @@
     const axis2_conf_t *conf,
     const axis2_env_t *env)
 {
-    return conf->transports_out;
+    return (axis2_transport_out_desc_t **)conf->transports_out;
 }
 
 AXIS2_EXTERN axis2_hash_t *AXIS2_CALL



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