aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-10-13 17:52:34 +0200
committerChristian Grothoff <christian@grothoff.org>2019-10-13 17:52:34 +0200
commitb24cb24068387776955b0a1d11b82826e7e1e603 (patch)
treeb4747d8f2681ce668cf21454c2169455be4707ca
parente31795501c38a9380291fed9d62c903989cfede1 (diff)
downloadlibmicrohttpd-b24cb24068387776955b0a1d11b82826e7e1e603.tar.gz
libmicrohttpd-b24cb24068387776955b0a1d11b82826e7e1e603.zip
fix test_upgrade_large
-rw-r--r--src/microhttpd/test_upgrade_large.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/test_upgrade_large.c b/src/microhttpd/test_upgrade_large.c
index 3131fdf4..f3318e35 100644
--- a/src/microhttpd/test_upgrade_large.c
+++ b/src/microhttpd/test_upgrade_large.c
@@ -1072,7 +1072,7 @@ test_upgrade (int flags,
1072 0 : 1090, 1072 0 : 1090,
1073 NULL, NULL, 1073 NULL, NULL,
1074 &ahc_upgrade, NULL, 1074 &ahc_upgrade, NULL,
1075 MHD_OPTION_CONNECTION_MEMORY_LIMIT, 512, 1075 MHD_OPTION_CONNECTION_MEMORY_LIMIT, (size_t) 512,
1076 MHD_OPTION_URI_LOG_CALLBACK, &log_cb, NULL, 1076 MHD_OPTION_URI_LOG_CALLBACK, &log_cb, NULL,
1077 MHD_OPTION_NOTIFY_COMPLETED, &notify_completed_cb, NULL, 1077 MHD_OPTION_NOTIFY_COMPLETED, &notify_completed_cb, NULL,
1078 MHD_OPTION_NOTIFY_CONNECTION, &notify_connection_cb, NULL, 1078 MHD_OPTION_NOTIFY_CONNECTION, &notify_connection_cb, NULL,
@@ -1085,7 +1085,7 @@ test_upgrade (int flags,
1085 0 : 1090, 1085 0 : 1090,
1086 NULL, NULL, 1086 NULL, NULL,
1087 &ahc_upgrade, NULL, 1087 &ahc_upgrade, NULL,
1088 MHD_OPTION_CONNECTION_MEMORY_LIMIT, 512, 1088 MHD_OPTION_CONNECTION_MEMORY_LIMIT, (size_t) 512,
1089 MHD_OPTION_URI_LOG_CALLBACK, &log_cb, NULL, 1089 MHD_OPTION_URI_LOG_CALLBACK, &log_cb, NULL,
1090 MHD_OPTION_NOTIFY_COMPLETED, &notify_completed_cb, NULL, 1090 MHD_OPTION_NOTIFY_COMPLETED, &notify_completed_cb, NULL,
1091 MHD_OPTION_NOTIFY_CONNECTION, &notify_connection_cb, NULL, 1091 MHD_OPTION_NOTIFY_CONNECTION, &notify_connection_cb, NULL,