From: Simon Ruderich Date: Fri, 9 Aug 2013 19:03:33 +0000 (+0200) Subject: log.c: Simplify #ifdef DEBUG in log_message(). X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=d87efa4a7a6285603950f5780ef57a72b651c8e9;hp=d87efa4a7a6285603950f5780ef57a72b651c8e9;p=tlsproxy%2Ftlsproxy.git log.c: Simplify #ifdef DEBUG in log_message(). As we use flockfile() multiple fprintf() don't create a race-condition. This also prevents a warning with clang which uses a macro for fprintf(). #ifdefs within macro arguments is not portable. ---