aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlv-426 <oxcafebaby@yahoo.com>2008-07-07 14:29:41 +0000
committerlv-426 <oxcafebaby@yahoo.com>2008-07-07 14:29:41 +0000
commitdf80d220e2f4b0280d1bdb05211b30f86fdca6e9 (patch)
treebc82ba31b6d01d9eff71f60d63984b128f2093b9 /src
parentdd1798c06738ca2ce97fdd44280adba6165e13c4 (diff)
downloadlibmicrohttpd-df80d220e2f4b0280d1bdb05211b30f86fdca6e9.tar.gz
libmicrohttpd-df80d220e2f4b0280d1bdb05211b30f86fdca6e9.zip
build fix
Diffstat (limited to 'src')
-rw-r--r--src/daemon/internal.c4
-rw-r--r--src/daemon/internal.h3
2 files changed, 4 insertions, 3 deletions
diff --git a/src/daemon/internal.c b/src/daemon/internal.c
index a86c70d8..3a060063 100644
--- a/src/daemon/internal.c
+++ b/src/daemon/internal.c
@@ -42,14 +42,14 @@ MHD_DLOG (const struct MHD_Daemon *daemon, const char *format, ...)
42 VFPRINTF (stderr, format, va); 42 VFPRINTF (stderr, format, va);
43 va_end (va); 43 va_end (va);
44} 44}
45 45#endif
46void 46void
47MHD_tls_log_func (int level, const char *str) 47MHD_tls_log_func (int level, const char *str)
48{ 48{
49 fprintf (stdout, "|<%d>| %s", level, str); 49 fprintf (stdout, "|<%d>| %s", level, str);
50} 50}
51 51
52#endif 52
53 53
54/** 54/**
55 * Process escape sequences ('+'=space, %HH) 55 * Process escape sequences ('+'=space, %HH)
diff --git a/src/daemon/internal.h b/src/daemon/internal.h
index 99566073..af6d05fe 100644
--- a/src/daemon/internal.h
+++ b/src/daemon/internal.h
@@ -66,8 +66,9 @@
66 * messages. 66 * messages.
67 */ 67 */
68void MHD_DLOG (const struct MHD_Daemon *daemon, const char *format, ...); 68void MHD_DLOG (const struct MHD_Daemon *daemon, const char *format, ...);
69void MHD_tls_log_func (int level, const char *str); 69
70#endif 70#endif
71void MHD_tls_log_func (int level, const char *str);
71 72
72/** 73/**
73 * Process escape sequences ('+'=space, %HH). 74 * Process escape sequences ('+'=space, %HH).