27 lines
797 B
Diff
27 lines
797 B
Diff
From 20dfcdf8e5699590d63da0b985b8cde5c862e5b2 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= <zbyszek@in.waw.pl>
|
|
Date: Fri, 13 Mar 2015 10:35:43 -0400
|
|
Subject: [PATCH] Utilize system crypto policy for gnutls
|
|
|
|
https://fedoraproject.org/wiki/Packaging:CryptoPolicies
|
|
---
|
|
src/microhttpd/daemon.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
|
|
index dbe0cb58f9..41e35a4f8e 100644
|
|
--- a/src/microhttpd/daemon.c
|
|
+++ b/src/microhttpd/daemon.c
|
|
@@ -3472,7 +3472,7 @@ MHD_start_daemon_va (unsigned int flags,
|
|
if (0 != (flags & MHD_USE_SSL))
|
|
{
|
|
gnutls_priority_init (&daemon->priority_cache,
|
|
- "NORMAL",
|
|
+ "@SYSTEM",
|
|
NULL);
|
|
}
|
|
#endif
|
|
--
|
|
2.1.0
|
|
|