libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit dc29c2914479a8fa2f423c7abf81890c5685cb2c
parent 3e6d01aabeab07feb0cdb75c16cb5594eefcb6fd
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon,  8 Sep 2008 06:09:19 +0000

capitalize

Diffstat:
Msrc/daemon/internal.c | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/daemon/internal.c b/src/daemon/internal.c @@ -106,12 +106,10 @@ void MHD_tls_log_func (int level, const char *str) { #ifdef DEBUG - fprintf (stdout, "|<%d>| %s", level, str); + FPRINTF (stdout, "|<%d>| %s", level, str); #endif } - - /** * Process escape sequences ('+'=space, %HH) */ @@ -125,8 +123,10 @@ MHD_http_unescape (char *val) *esc = ' '; while (NULL != (esc = strstr (val, "%"))) { - if ((1 == sscanf (&esc[1], - "%2x", &num)) || (1 == sscanf (&esc[1], "%2X", &num))) + if ((1 == SSCANF (&esc[1], + "%2x", &num)) || + (1 == SSCANF (&esc[1], + "%2X", &num))) { esc[0] = (unsigned char) num; memmove (&esc[1], &esc[3], strlen (&esc[3]) + 1);