[svn-commits] tilghman: branch 1.6.0 r221921 - in /branches/1.6.0: ./ main/logger.c

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


Author: tilghman
Date: Thu Oct  1 22:05:28 2009
New Revision: 221921

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=221921
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.0/   (props changed)
    branches/1.6.0/main/logger.c

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

Modified: branches/1.6.0/main/logger.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.0/main/logger.c?view=diff&rev=221921&r1=221920&r2=221921
==============================================================================
--- branches/1.6.0/main/logger.c (original)
+++ branches/1.6.0/main/logger.c Thu Oct  1 22:05:28 2009
@@ -145,7 +145,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