diff options
author | nadiramra | 2010-06-01 20:09:28 +0000 |
---|---|---|
committer | nadiramra | 2010-06-01 20:09:28 +0000 |
commit | af93f3e81360d8283cf83eb22b9f3165e097774d (patch) | |
tree | 2d91128d6729d8ffc7dcc028fef4e795dcfb1506 /test/core | |
parent | f524a1720af5bacf807684d890afa85af4cbe5b7 (diff) | |
download | axis2c-af93f3e81360d8283cf83eb22b9f3165e097774d.tar.gz axis2c-af93f3e81360d8283cf83eb22b9f3165e097774d.tar.bz2 |
Minor API name correction receive to receive. kept old api for backward compatibility but removed from header file.
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@950233 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/core')
-rw-r--r-- | test/core/transport/http/test_http_transport.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/core/transport/http/test_http_transport.c b/test/core/transport/http/test_http_transport.c index 69134bc..d961316 100644 --- a/test/core/transport/http/test_http_transport.c +++ b/test/core/transport/http/test_http_transport.c @@ -157,7 +157,7 @@ test_http_client( status); return; } - status = axis2_http_client_recieve_header(client, env); + status = axis2_http_client_receive_header(client, env); if (status < 0) { printf("Test FAILED ......... Can't recieve. Status: %d\n", status); @@ -229,10 +229,10 @@ test_https_client( status); return; } - status = axis2_http_client_recieve_header(client, env); + status = axis2_http_client_receive_header(client, env); if (status < 0) { - printf("Test FAILED ......... Can't recieve. Status: %d\n", status); + printf("Test FAILED ......... Can't receive. Status: %d\n", status); return; } response = axis2_http_client_get_response(client, env); |