diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2007-10-01 19:32:16 +0200 |
---|---|---|
committer | Johannes Berg <johannes@sipsolutions.net> | 2007-10-01 19:32:16 +0200 |
commit | c3ac6381f2ce2410ac7458e127532a7f1068a307 (patch) | |
tree | 6394f4050619512d62c561a1f9fa411dc298135a | |
parent | 1487d4d5227568bbbfb1c12424b676037b3830fb (diff) | |
download | dovecot-antispam-c3ac6381f2ce2410ac7458e127532a7f1068a307.tar.gz dovecot-antispam-c3ac6381f2ce2410ac7458e127532a7f1068a307.tar.xz dovecot-antispam-c3ac6381f2ce2410ac7458e127532a7f1068a307.zip |
flush stderr when logging there
-rw-r--r-- | debug.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -10,6 +10,7 @@ static void _debug(const char *format, va_list ap) vsyslog(LOG_DEBUG, format, ap); #elif defined(DEBUG_STDERR) vfprintf(stderr, format, ap); + fflush(stderr); #else #error no logging method #endif |