libmicrohttpd

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

commit dc1eb9a9d79d4272d8d29348ca37a10634eb7e8f
parent d4d4393a1607b761d460ff51d865397c0a92942c
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Mon, 11 Apr 2016 14:52:17 +0000

largepost.c: corrected const pointer to const char

Diffstat:
Mdoc/examples/largepost.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/examples/largepost.c b/doc/examples/largepost.c @@ -65,7 +65,7 @@ const char *servererrorpage = "<html><body>An internal server error has occured.</body></html>"; const char *fileexistspage = "<html><body>This file already exists.</body></html>"; -const char const *postprocerror = +const char* const postprocerror = "<html><head><title>Error</title></head><body>Error processing POST data</body></html>";