aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/internal.h')
-rw-r--r--src/daemon/internal.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/daemon/internal.h b/src/daemon/internal.h
index 13f4ddaf..f76d6834 100644
--- a/src/daemon/internal.h
+++ b/src/daemon/internal.h
@@ -57,14 +57,14 @@ extern void *mhd_panic_cls;
57/** 57/**
58 * Trigger 'panic' action based on fatal errors. 58 * Trigger 'panic' action based on fatal errors.
59 * 59 *
60 * @param error message (const char *) 60 * @param msg error message (const char *)
61 */ 61 */
62#define MHD_PANIC(msg) mhd_panic (mhd_panic_cls, __FILE__, __LINE__, msg) 62#define MHD_PANIC(msg) mhd_panic (mhd_panic_cls, __FILE__, __LINE__, msg)
63#else 63#else
64/** 64/**
65 * Trigger 'panic' action based on fatal errors. 65 * Trigger 'panic' action based on fatal errors.
66 * 66 *
67 * @param error message (const char *) 67 * @param msg error message (const char *)
68 */ 68 */
69#define MHD_PANIC(msg) mhd_panic (mhd_panic_cls, __FILE__, __LINE__, NULL) 69#define MHD_PANIC(msg) mhd_panic (mhd_panic_cls, __FILE__, __LINE__, NULL)
70#endif 70#endif
@@ -156,6 +156,7 @@ MHD_DLOG (const struct MHD_Daemon *daemon,
156 * 156 *
157 * @param cls closure (use NULL) 157 * @param cls closure (use NULL)
158 * @param connection handle to connection, not used 158 * @param connection handle to connection, not used
159 * @param val value to unescape (modified in the process)
159 * @return length of the resulting val (strlen(val) maybe 160 * @return length of the resulting val (strlen(val) maybe
160 * shorter afterwards due to elimination of escape sequences) 161 * shorter afterwards due to elimination of escape sequences)
161 */ 162 */