summaryrefslogtreecommitdiff
path: root/usr.sbin/ntpd/constraint.c
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2016-07-13 16:35:48 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2016-07-13 16:35:48 +0000
commit017be063f18b8676903994371040064a67e4b1e0 (patch)
tree83777339e86d002ae569b1ec2b502dfaad65f0a1 /usr.sbin/ntpd/constraint.c
parentd0bbaa08d1670a014759055bfdfdf78d5b608943 (diff)
Adjust existing tls_config_set_cipher() callers for TLS cipher group
changes - map the previous configuration to the equivalent in the new groups. This will be revisited post release. Discussed with beck@
Diffstat (limited to 'usr.sbin/ntpd/constraint.c')
-rw-r--r--usr.sbin/ntpd/constraint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ntpd/constraint.c b/usr.sbin/ntpd/constraint.c
index e2df6c638e2..137876121ed 100644
--- a/usr.sbin/ntpd/constraint.c
+++ b/usr.sbin/ntpd/constraint.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: constraint.c,v 1.29 2016/06/01 16:35:58 deraadt Exp $ */
+/* $OpenBSD: constraint.c,v 1.30 2016/07/13 16:35:47 jsing Exp $ */
/*
* Copyright (c) 2015 Reyk Floeter <reyk@openbsd.org>
@@ -818,7 +818,7 @@ httpsdate_init(const char *addr, const char *port, const char *hostname,
if ((httpsdate->tls_config = tls_config_new()) == NULL)
goto fail;
- if (tls_config_set_ciphers(httpsdate->tls_config, "compat") != 0)
+ if (tls_config_set_ciphers(httpsdate->tls_config, "all") != 0)
goto fail;
if (ca == NULL || ca_len == 0)