aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--src/microhttpd/daemon.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c5d3df0d..2766517b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
1Thu Feb 26 09:55:43 CET 2015
2 Fixing bug that prevented MHD_OPTION_HTTPS_MEM_DHPARAMS
3 from working within a MHD_OPTION_ARRAY. -DD
4
1Sun Feb 8 01:24:38 CET 2015 5Sun Feb 8 01:24:38 CET 2015
2 Adding MHD_OPTION_HTTPS_KEY_PASSWORD as proposed by 6 Adding MHD_OPTION_HTTPS_KEY_PASSWORD as proposed by
3 Andrew Basile. -CG/AB 7 Andrew Basile. -CG/AB
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index ba7ffd1d..314dabca 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -3221,6 +3221,7 @@ parse_options_va (struct MHD_Daemon *daemon,
3221 case MHD_OPTION_HTTPS_KEY_PASSWORD: 3221 case MHD_OPTION_HTTPS_KEY_PASSWORD:
3222 case MHD_OPTION_HTTPS_MEM_CERT: 3222 case MHD_OPTION_HTTPS_MEM_CERT:
3223 case MHD_OPTION_HTTPS_MEM_TRUST: 3223 case MHD_OPTION_HTTPS_MEM_TRUST:
3224 case MHD_OPTION_HTTPS_MEM_DHPARAMS:
3224 case MHD_OPTION_HTTPS_PRIORITIES: 3225 case MHD_OPTION_HTTPS_PRIORITIES:
3225 case MHD_OPTION_ARRAY: 3226 case MHD_OPTION_ARRAY:
3226 case MHD_OPTION_HTTPS_CERT_CALLBACK: 3227 case MHD_OPTION_HTTPS_CERT_CALLBACK: