X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=src%2Flog.c;h=a791450da0a4bba518ca3a7969e05b786d9cf738;hb=b7ce41b809a3b3533d398c0da8fd9787c149434c;hp=05acddfc8b98b5d8fcb37f89f1974b47d32c59b1;hpb=193405f1f065a4b1cb6c0a136a9e5965f13993d7;p=tlsproxy%2Ftlsproxy.git diff --git a/src/log.c b/src/log.c index 05acddf..a791450 100644 --- a/src/log.c +++ b/src/log.c @@ -46,9 +46,9 @@ void log_message(int level, const char *file, int line, const char *format, ...) #endif /* Prevent another thread from interrupting the two printfs(). */ - flockfile(stdout); + flockfile(stderr); - fprintf(stdout, + fprintf(stderr, #ifdef DEBUG "%-12s:%-3d " #endif @@ -58,9 +58,9 @@ void log_message(int level, const char *file, int line, const char *format, ...) #endif level_string, (int)pthread_self()); va_start(ap, format); - vfprintf(stdout, format, ap); + vfprintf(stderr, format, ap); va_end(ap); - fprintf(stdout, "\n"); + fprintf(stderr, "\n"); - funlockfile(stdout); + funlockfile(stderr); }