From 746e139e6db98dd84689e8a404b2a19946f7c046 Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Tue, 20 Feb 2007 23:26:00 +0000 Subject: Flush out the file pointer. (issue #9115 reported by guthrie) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@55716 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/logger.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'main') diff --git a/main/logger.c b/main/logger.c index ed4d0729b..d31aabd41 100644 --- a/main/logger.c +++ b/main/logger.c @@ -705,6 +705,8 @@ static void logger_print_normal(struct logmsg *logmsg) fprintf(stderr, "Logger Warning: Unable to write to log file '%s': %s (disabled)\n", chan->filename, strerror(errno)); manager_event(EVENT_FLAG_SYSTEM, "LogChannel", "Channel: %s\r\nEnabled: No\r\nReason: %d - %s\r\n", chan->filename, errno, strerror(errno)); chan->disabled = 1; + } else if (res > 0) { + fflush(chan->fileptr); } } } -- cgit v1.2.3