Browse Source

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@
OPENBSD_6_0
jsing 8 years ago
parent
commit
9801e4d851
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/usr.sbin/ntpd/constraint.c

+ 2
- 2
src/usr.sbin/ntpd/constraint.c View File

@ -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> * 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) if ((httpsdate->tls_config = tls_config_new()) == NULL)
goto fail; goto fail;
if (tls_config_set_ciphers(httpsdate->tls_config, "compat") != 0)
if (tls_config_set_ciphers(httpsdate->tls_config, "all") != 0)
goto fail; goto fail;
if (ca == NULL || ca_len == 0) if (ca == NULL || ca_len == 0)


Loading…
Cancel
Save