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 sh...@apache.org on 2009/01/06 12:50:05 UTC

svn commit: r731921 - /webservices/axis2/trunk/c/src/core/transport/http/common/simple_http_svr_conn.c

Author: shankar
Date: Tue Jan  6 03:50:04 2009
New Revision: 731921

URL: http://svn.apache.org/viewvc?rev=731921&view=rev
Log:
Fixing indentation problems. 

Modified:
    webservices/axis2/trunk/c/src/core/transport/http/common/simple_http_svr_conn.c

Modified: webservices/axis2/trunk/c/src/core/transport/http/common/simple_http_svr_conn.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/transport/http/common/simple_http_svr_conn.c?rev=731921&r1=731920&r2=731921&view=diff
==============================================================================
--- webservices/axis2/trunk/c/src/core/transport/http/common/simple_http_svr_conn.c (original)
+++ webservices/axis2/trunk/c/src/core/transport/http/common/simple_http_svr_conn.c Tue Jan  6 03:50:04 2009
@@ -215,7 +215,7 @@
     end_of_line = AXIS2_FALSE;
     while (AXIS2_FALSE == end_of_headers)
     {
-	axis2_bool_t is_read = AXIS2_FALSE;
+        axis2_bool_t is_read = AXIS2_FALSE;
         while ((read =
                 axutil_stream_peek_socket(svr_conn->stream, env, tmp_buf,
                                           2048 - 1)) > 0)
@@ -277,7 +277,8 @@
         end_of_line = AXIS2_FALSE;
         if(!is_read)
         {
-            break; /*if nothing is read, this loop should be broken. Otherwise, going to be endless loop */
+            /*if nothing is read, this loop should be broken. Otherwise, going to be endless loop */
+            break; 
         }
     }
     return request;