[svn-commits] tilghman: branch 1.6.2 r221923 - in /branches/1.6.2: ./ main/logger.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Oct 1 22:06:46 CDT 2009


Author: tilghman
Date: Thu Oct  1 22:06:41 2009
New Revision: 221923

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=221923
Log:
Merged revisions 221920 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r221920 | tilghman | 2009-10-01 22:04:34 -0500 (Thu, 01 Oct 2009) | 4 lines
  
  Initialize a variable that we check immediately upon startup.
  (closes issue #15973)
   Reported by: atis
........

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/main/logger.c

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.2/main/logger.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/main/logger.c?view=diff&rev=221923&r1=221922&r2=221923
==============================================================================
--- branches/1.6.2/main/logger.c (original)
+++ branches/1.6.2/main/logger.c Thu Oct  1 22:06:41 2009
@@ -149,7 +149,7 @@
 static AST_LIST_HEAD_STATIC(logmsgs, logmsg);
 static pthread_t logthread = AST_PTHREADT_NULL;
 static ast_cond_t logcond;
-static int close_logger_thread;
+static int close_logger_thread = 0;
 
 static FILE *eventlog;
 static FILE *qlog;




More information about the svn-commits mailing list