diff options
| author | 2016-07-13 16:35:47 +0000 | |
|---|---|---|
| committer | 2016-07-13 16:35:47 +0000 | |
| commit | 0b1f3db1fa16a3a722f45bb4cc7af2b4bdf95e8d (patch) | |
| tree | 32373b278380ee19669ae479f8ad1b40a3618347 /usr.sbin/ntpd/constraint.c | |
| parent | Split the existing TLS cipher suite groups into four: (diff) | |
| download | wireguard-openbsd-0b1f3db1fa16a3a722f45bb4cc7af2b4bdf95e8d.tar.xz wireguard-openbsd-0b1f3db1fa16a3a722f45bb4cc7af2b4bdf95e8d.zip | |
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.c | 4 |
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) |
