libmicrohttpd

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

commit e3ed5e0d17864bff9088092f81701a70fda13162
parent 6dd2096b4bf725faa41027b2370cdf4765504716
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Wed, 15 Sep 2021 19:10:42 +0300

test_postprocessor: improved error reporting

Diffstat:
Msrc/microhttpd/test_postprocessor.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/microhttpd/test_postprocessor.c b/src/microhttpd/test_postprocessor.c @@ -143,11 +143,12 @@ value_checker (void *cls, #if MHD_DEBUG_PP fprintf (stderr, - "VC: `%s' `%s' `%s' `%s' `%.*s' (%d)\n", + "VC: `%s' `%s' `%s' `%s' (+%u)`%.*s' (%d)\n", key ? key : "(NULL)", filename ? filename : "(NULL)", content_type ? content_type : "(NULL)", transfer_encoding ? transfer_encoding : "(NULL)", + (unsigned int) off, (int) (data ? size : 6), data ? data : "(NULL)", (int) size);