diff options
author | damitha | 2010-06-29 08:57:05 +0000 |
---|---|---|
committer | damitha | 2010-06-29 08:57:05 +0000 |
commit | c35e1616e67de2d5852dae647c2db6d811f451bd (patch) | |
tree | 00333633e1410647421457733ffa827efb1db0f2 /src/core/transport/http/receiver | |
parent | b16ecb885592c2a78dc9d69e1eb2ea7432ef4173 (diff) | |
download | axis2c-c35e1616e67de2d5852dae647c2db6d811f451bd.tar.gz axis2c-c35e1616e67de2d5852dae647c2db6d811f451bd.tar.bz2 |
Partial fix of AXIS2C-1440
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@958884 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/core/transport/http/receiver')
-rw-r--r-- | src/core/transport/http/receiver/http_receiver.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/transport/http/receiver/http_receiver.c b/src/core/transport/http/receiver/http_receiver.c index 5c071e5..e2cbec2 100644 --- a/src/core/transport/http/receiver/http_receiver.c +++ b/src/core/transport/http/receiver/http_receiver.c @@ -149,8 +149,8 @@ axis2_http_server_create( if(repo) { - axis2_transport_in_desc_t *transport_in = NULL;
- axis2_conf_t *conf = NULL;
+ axis2_transport_in_desc_t *transport_in = NULL; + axis2_conf_t *conf = NULL; axis2_transport_receiver_t *receiver = NULL; /** * We first create a private conf ctx which is owned by this server @@ -204,8 +204,8 @@ axis2_http_server_create_with_file( if(file) { - axis2_transport_in_desc_t *transport_in = NULL;
- axis2_conf_t *conf = NULL;
+ axis2_transport_in_desc_t *transport_in = NULL; + axis2_conf_t *conf = NULL; axis2_transport_receiver_t *receiver = NULL; /** * We first create a private conf ctx which is owned by this server @@ -329,8 +329,8 @@ axis2_http_server_start( server_impl->is_application_client_side); axis2_http_worker_set_svr_port(worker, env, server_impl->port); {/** Obtain server IP and set it - axis2_transport_in_desc_t *transport_in = NULL;
- axis2_conf_t *conf = NULL;
+ axis2_transport_in_desc_t *transport_in = NULL; + axis2_conf_t *conf = NULL; axis2_transport_receiver_t *receiver = NULL; conf = axis2_conf_ctx_get_conf(server_impl->conf_ctx_private, env); transport_in = axis2_conf_get_transport_in(conf, env, AXIS2_TRANSPORT_ENUM_HTTP); |