diff options
Diffstat (limited to 'src/microhttpd/daemon.c')
-rw-r--r-- | src/microhttpd/daemon.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c index bf01ba9b..a8fc98c6 100644 --- a/src/microhttpd/daemon.c +++ b/src/microhttpd/daemon.c @@ -2536,7 +2536,12 @@ internal_add_connection (struct MHD_Daemon *daemon, else { #ifdef HTTPS_SUPPORT - gnutls_init_flags_t flags; +#if (GNUTLS_VERSION_NUMBER+0 >= 0x030500) + gnutls_init_flags_t +#else + unsigned int +#endif + flags; flags = GNUTLS_SERVER; #if (GNUTLS_VERSION_NUMBER+0 >= 0x030402) |