diff options
Diffstat (limited to 'src/daemon/internal.c')
-rw-r--r-- | src/daemon/internal.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/daemon/internal.c b/src/daemon/internal.c index 83b6590d..abf718de 100644 --- a/src/daemon/internal.c +++ b/src/daemon/internal.c | |||
@@ -106,11 +106,12 @@ MHD_DLOG (const struct MHD_Daemon *daemon, const char *format, ...) | |||
106 | va_end (va); | 106 | va_end (va); |
107 | } | 107 | } |
108 | #endif | 108 | #endif |
109 | |||
109 | void | 110 | void |
110 | MHD_tls_log_func (int level, const char *str) | 111 | MHD_tls_log_func (int level, const char *str) |
111 | { | 112 | { |
112 | #ifdef DEBUG | 113 | #ifdef HAVE_MESSAGES |
113 | FPRINTF (stdout, "|<%d>| %s", level, str); | 114 | FPRINTF (stderr, "|<%d>| %s", level, str); |
114 | #endif | 115 | #endif |
115 | } | 116 | } |
116 | 117 | ||