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 na...@apache.org on 2009/08/17 08:56:05 UTC

svn commit: r804876 - /webservices/axis2/trunk/c/src/core/transport/http/receiver/http_svr_thread.c

Author: nandika
Date: Mon Aug 17 06:56:05 2009
New Revision: 804876

URL: http://svn.apache.org/viewvc?rev=804876&view=rev
Log:
compilation error fixed

Modified:
    webservices/axis2/trunk/c/src/core/transport/http/receiver/http_svr_thread.c

Modified: webservices/axis2/trunk/c/src/core/transport/http/receiver/http_svr_thread.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/transport/http/receiver/http_svr_thread.c?rev=804876&r1=804875&r2=804876&view=diff
==============================================================================
--- webservices/axis2/trunk/c/src/core/transport/http/receiver/http_svr_thread.c (original)
+++ webservices/axis2/trunk/c/src/core/transport/http/receiver/http_svr_thread.c Mon Aug 17 06:56:05 2009
@@ -234,7 +234,7 @@
     }
     arg_list = (axis2_http_svr_thd_args_t *)data;
 
-    IF_AXIS2_LOG_DEBUG_ENABLED(log)
+    IF_AXIS2_LOG_DEBUG_ENABLED(env->log)
     {
         AXIS2_PLATFORM_GET_TIME_IN_MILLIS(&t1);
     }
@@ -253,7 +253,7 @@
         axis2_http_simple_request_free(request, thread_env);
     }
 
-    IF_AXIS2_LOG_DEBUG_ENABLED(log)
+    IF_AXIS2_LOG_DEBUG_ENABLED(env->log)
     {
         AXIS2_PLATFORM_GET_TIME_IN_MILLIS(&t2);
         millisecs = t2.millitm - t1.millitm;