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 sa...@apache.org on 2006/02/14 12:12:10 UTC

svn commit: r377695 - /webservices/axis2/trunk/c/modules/util/log.c

Author: samisa
Date: Tue Feb 14 03:12:05 2006
New Revision: 377695

URL: http://svn.apache.org/viewcvs?rev=377695&view=rev
Log:
removed wrong s in open mode

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

Modified: webservices/axis2/trunk/c/modules/util/log.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/util/log.c?rev=377695&r1=377694&r2=377695&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/util/log.c (original)
+++ webservices/axis2/trunk/c/modules/util/log.c Tue Feb 14 03:12:05 2006
@@ -118,7 +118,7 @@
 	
 	axis2_thread_mutex_lock(log_impl->mutex);
 	
-	log_impl->stream = axis2_file_handler_open(log_file_name,"as+");
+	log_impl->stream = axis2_file_handler_open(log_file_name,"a+");
 	
 	axis2_thread_mutex_unlock(log_impl->mutex);