libmicrohttpd

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

commit e1f2253a387715a69e7653ddd1ece2d1b7872175
parent 2962b6e48db51a242a09f0fce1ff1e747f7c7330
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon, 12 Nov 2018 19:51:52 +0100

fix ftbfs

Diffstat:
Msrc/microhttpd/response.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/microhttpd/response.c b/src/microhttpd/response.c @@ -720,8 +720,8 @@ MHD_create_response_from_buffer_with_free_callback (size_t size, r = MHD_create_response_from_data (size, buffer, - GNUNET_YES, - GNUNET_NO); + MHD_YES, + MHD_NO); if (NULL == r) return r; r->crfc = crfc;