aboutsummaryrefslogtreecommitdiff
path: root/src/examples/https_server_example.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/examples/https_server_example.c')
-rw-r--r--src/examples/https_server_example.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/examples/https_server_example.c b/src/examples/https_server_example.c
index 709f8502..78f7176b 100644
--- a/src/examples/https_server_example.c
+++ b/src/examples/https_server_example.c
@@ -165,9 +165,9 @@ main (int argc, char *const *argv)
165 gnutls_anon_set_server_dh_params (anoncred, dh_params); 165 gnutls_anon_set_server_dh_params (anoncred, dh_params);
166 166
167 TLS_daemon = MHD_start_daemon (MHD_USE_THREAD_PER_CONNECTION 167 TLS_daemon = MHD_start_daemon (MHD_USE_THREAD_PER_CONNECTION
168 | MHD_USE_DEBUG | MHD_USE_SSL, 168 | MHD_USE_DEBUG | MHD_USE_SSL,
169 atoi (argv[3]), NULL, NULL, &TLS_echo, NULL, 169 atoi (argv[3]), NULL, NULL, &TLS_echo, NULL,
170 MHD_OPTION_END); 170 MHD_OPTION_END);
171 171
172 if (TLS_daemon == NULL) 172 if (TLS_daemon == NULL)
173 return 1; 173 return 1;