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 sa...@apache.org on 2006/01/22 12:25:54 UTC

svn commit: r371268 - /webservices/axis2/trunk/c/modules/util/stream.c

Author: samisa
Date: Sun Jan 22 03:25:49 2006
New Revision: 371268

URL: http://svn.apache.org/viewcvs?rev=371268&view=rev
Log:
Fixed the bug introdued

Modified:
    webservices/axis2/trunk/c/modules/util/stream.c

Modified: webservices/axis2/trunk/c/modules/util/stream.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/util/stream.c?rev=371268&r1=371267&r2=371268&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/util/stream.c (original)
+++ webservices/axis2/trunk/c/modules/util/stream.c Sun Jan 22 03:25:49 2006
@@ -557,7 +557,7 @@
 	stream_impl->stream_type = AXIS2_STREAM_SOCKET;
 	stream_impl->socket = socket;
 	stream_impl->fp = NULL;
-	/*stream_impl->fp = fdopen(socket, "w+");*/
+	stream_impl->fp = fdopen(socket, "w+");
 	if(NULL == stream_impl->fp)
 	{
 		axis2_stream_free(def_stream, env);