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 da...@apache.org on 2006/02/15 08:43:46 UTC

svn commit: r377958 - /webservices/axis2/trunk/c/modules/core/transport/http/receiver/simple_http_svr_conn.c

Author: damitha
Date: Tue Feb 14 23:43:45 2006
New Revision: 377958

URL: http://svn.apache.org/viewcvs?rev=377958&view=rev
Log:
replaces close with AXIS2_CLOSE_SOCKET macro

Modified:
    webservices/axis2/trunk/c/modules/core/transport/http/receiver/simple_http_svr_conn.c

Modified: webservices/axis2/trunk/c/modules/core/transport/http/receiver/simple_http_svr_conn.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/transport/http/receiver/simple_http_svr_conn.c?rev=377958&r1=377957&r2=377958&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/receiver/simple_http_svr_conn.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/receiver/simple_http_svr_conn.c Tue Feb 14 23:43:45 2006
@@ -188,7 +188,7 @@
 	AXIS2_STREAM_FREE(svr_conn_impl->stream, env);
     if(-1 != svr_conn_impl->socket)
     {
-        close(svr_conn_impl->socket);
+		AXIS2_CLOSE_SOCKET(svr_conn_impl->socket);
         svr_conn_impl->socket = -1;
     }
     return AXIS2_SUCCESS;