libmicrohttpd

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

commit a375ced487698a957c5f2f30a965a2755f9e2cb3
parent 76345508b0a0d4acc78363e869f706172750d120
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon, 18 Jan 2016 20:29:20 +0000

-nl issue

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

diff --git a/src/examples/authorization_example.c b/src/examples/authorization_example.c @@ -71,14 +71,14 @@ ahc_echo (void *cls, if (fail) { response = MHD_create_response_from_buffer (strlen (DENIED), - (void *) DENIED, + (void *) DENIED, MHD_RESPMEM_PERSISTENT); ret = MHD_queue_basic_auth_fail_response (connection,"TestRealm",response); } else { response = MHD_create_response_from_buffer (strlen (me), - (void *) me, + (void *) me, MHD_RESPMEM_PERSISTENT); ret = MHD_queue_response (connection, MHD_HTTP_OK, response); }