From: Joshua Colp Date: Tue, 20 Feb 2007 23:26:00 +0000 (+0000) Subject: Flush out the file pointer. (issue #9115 reported by guthrie) X-Git-Tag: 1.6.0-beta1~3^2~3156 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=746e139e6db98dd84689e8a404b2a19946f7c046;p=thirdparty%2Fasterisk.git 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 --- diff --git a/main/logger.c b/main/logger.c index ed4d0729b6..d31aabd415 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); } } }