libmicrohttpd

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

commit ec46999ff566a16c79af63ecd5a80dc759507258
parent f2858123902bea7492114d69fdaf1731741ad767
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri,  4 Nov 2016 11:26:30 +0100

style fix: in MHD-style, we always put the const before 'struct'

Diffstat:
Msrc/microhttpd/connection.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c @@ -502,7 +502,7 @@ need_100_continue (struct MHD_Connection *connection) void MHD_connection_mark_closed_ (struct MHD_Connection *connection) { - struct MHD_Daemon * const daemon = connection->daemon; + const struct MHD_Daemon *daemon = connection->daemon; connection->state = MHD_CONNECTION_CLOSED; connection->event_loop_info = MHD_EVENT_LOOP_INFO_CLEANUP;