aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/connection.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/connection.c')
-rw-r--r--src/microhttpd/connection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 798c285c..36e74900 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -486,9 +486,9 @@ MHD_set_connection_value_n_nocheck_ (struct MHD_Connection *connection,
486 sizeof (struct MHD_HTTP_Res_Header)); 486 sizeof (struct MHD_HTTP_Res_Header));
487 if (NULL == pos) 487 if (NULL == pos)
488 return MHD_NO; 488 return MHD_NO;
489 pos->header = (char *) key; 489 pos->header = key;
490 pos->header_size = key_size; 490 pos->header_size = key_size;
491 pos->value = (char *) value; 491 pos->value = value;
492 pos->value_size = value_size; 492 pos->value_size = value_size;
493 pos->kind = kind; 493 pos->kind = kind;
494 pos->next = NULL; 494 pos->next = NULL;