summaryrefslogtreecommitdiffstats
path: root/libexec/spamd
diff options
context:
space:
mode:
authorjsing <jsing@openbsd.org>2016-07-13 16:35:47 +0000
committerjsing <jsing@openbsd.org>2016-07-13 16:35:47 +0000
commit0b1f3db1fa16a3a722f45bb4cc7af2b4bdf95e8d (patch)
tree32373b278380ee19669ae479f8ad1b40a3618347 /libexec/spamd
parentSplit the existing TLS cipher suite groups into four: (diff)
downloadwireguard-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 'libexec/spamd')
-rw-r--r--libexec/spamd/spamd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/spamd/spamd.c b/libexec/spamd/spamd.c
index 1fe86ddff71..e8b69aff19d 100644
--- a/libexec/spamd/spamd.c
+++ b/libexec/spamd/spamd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: spamd.c,v 1.142 2016/05/17 17:51:47 jca Exp $ */
+/* $OpenBSD: spamd.c,v 1.143 2016/07/13 16:35:47 jsing Exp $ */
/*
* Copyright (c) 2015 Henning Brauer <henning@openbsd.org>
@@ -458,7 +458,7 @@ spamd_tls_init()
tls_config_set_protocols(tlscfg, TLS_PROTOCOLS_ALL);
/* might need user-specified ciphers, tls_config_set_ciphers */
- if (tls_config_set_ciphers(tlscfg, "compat") != 0)
+ if (tls_config_set_ciphers(tlscfg, "all") != 0)
errx(1, "failed to set tls ciphers");
if (tls_config_set_cert_mem(tlscfg, pubcert, pubcertlen) == -1)