diff options
author | jsing <> | 2014-07-09 11:25:42 +0000 |
---|---|---|
committer | jsing <> | 2014-07-09 11:25:42 +0000 |
commit | e39ae219007e146f0b9e77030338a5ced6fe0e3c (patch) | |
tree | 604b9084e9f8d9e522922bc0cd6be5e22478e9ee /src/lib/libssl/ssl_cert.c | |
parent | dd1dab9e5f2fdf8d0b2b49e9a51011f45aacd959 (diff) | |
download | openbsd-e39ae219007e146f0b9e77030338a5ced6fe0e3c.tar.gz openbsd-e39ae219007e146f0b9e77030338a5ced6fe0e3c.tar.bz2 openbsd-e39ae219007e146f0b9e77030338a5ced6fe0e3c.zip |
tedu the SSL export cipher handling - since we do not have enabled export
ciphers we no longer need the flags or code to support it.
ok beck@ miod@
Diffstat (limited to 'src/lib/libssl/ssl_cert.c')
-rw-r--r-- | src/lib/libssl/ssl_cert.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_cert.c b/src/lib/libssl/ssl_cert.c index 0864fe8d99..5b5ffac06f 100644 --- a/src/lib/libssl/ssl_cert.c +++ b/src/lib/libssl/ssl_cert.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssl_cert.c,v 1.39 2014/06/21 09:10:30 logan Exp $ */ | 1 | /* $OpenBSD: ssl_cert.c,v 1.40 2014/07/09 11:25:42 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -202,8 +202,6 @@ ssl_cert_dup(CERT *cert) | |||
202 | ret->valid = cert->valid; | 202 | ret->valid = cert->valid; |
203 | ret->mask_k = cert->mask_k; | 203 | ret->mask_k = cert->mask_k; |
204 | ret->mask_a = cert->mask_a; | 204 | ret->mask_a = cert->mask_a; |
205 | ret->export_mask_k = cert->export_mask_k; | ||
206 | ret->export_mask_a = cert->export_mask_a; | ||
207 | 205 | ||
208 | if (cert->rsa_tmp != NULL) { | 206 | if (cert->rsa_tmp != NULL) { |
209 | RSA_up_ref(cert->rsa_tmp); | 207 | RSA_up_ref(cert->rsa_tmp); |