aboutsummaryrefslogtreecommitdiffstats
path: root/main/logger.c
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-02 03:06:32 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-10-02 03:06:32 +0000
commit4b1e48d0d0159a897c282fab88769530fa875645 (patch)
tree20ff4257248f4d3d71695f627e9bece8a568bd9a /main/logger.c
parent7d119176fc38f3a020ce7b8beb5c0d403d5044cf (diff)
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 ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.1@221922 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/logger.c')
-rw-r--r--main/logger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/logger.c b/main/logger.c
index 8a0f11094..d9d45472e 100644
--- a/main/logger.c
+++ b/main/logger.c
@@ -145,7 +145,7 @@ struct logmsg {
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;