diff options
author | Phil Pennock <pdp@exim.org> | 2012-05-20 18:22:06 -0400 |
---|---|---|
committer | Phil Pennock <pdp@exim.org> | 2012-05-20 18:22:06 -0400 |
commit | 5779e6aa2e83b7e60d0c20e873de922b88e35be4 (patch) | |
tree | cc5936323ebb2d587ceb85e196afd265978ce4d5 /src | |
parent | cfdf9d6b910baba18692adcc7d924d60da401176 (diff) |
tls_require_ciphers must be assigned to state copy
Diffstat (limited to 'src')
-rw-r--r-- | src/src/tls-gnu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/src/tls-gnu.c b/src/src/tls-gnu.c index 51fdb8657..9d121f96f 100644 --- a/src/src/tls-gnu.c +++ b/src/src/tls-gnu.c @@ -870,6 +870,7 @@ state->host = host; state->tls_certificate = certificate; state->tls_privatekey = privatekey; +state->tls_require_ciphers = require_ciphers; state->tls_sni = sni; state->tls_verify_certificates = cas; state->tls_crl = crl; |