diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-07-09 11:25:43 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-07-09 11:25:43 +0000 |
commit | 8fe50da7c9e728f8298edeb84998d26bf458b0e2 (patch) | |
tree | d34a2bf599566a5be04db4c77c0669e4ff759ff1 /lib/libssl/ssl_cert.c | |
parent | 9fca2717c60e5d9f3a807340975d9b8e8779efad (diff) |
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 'lib/libssl/ssl_cert.c')
-rw-r--r-- | lib/libssl/ssl_cert.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libssl/ssl_cert.c b/lib/libssl/ssl_cert.c index 0864fe8d997..5b5ffac06f4 100644 --- a/lib/libssl/ssl_cert.c +++ b/lib/libssl/ssl_cert.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_cert.c,v 1.39 2014/06/21 09:10:30 logan Exp $ */ +/* $OpenBSD: ssl_cert.c,v 1.40 2014/07/09 11:25:42 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -202,8 +202,6 @@ ssl_cert_dup(CERT *cert) ret->valid = cert->valid; ret->mask_k = cert->mask_k; ret->mask_a = cert->mask_a; - ret->export_mask_k = cert->export_mask_k; - ret->export_mask_a = cert->export_mask_a; if (cert->rsa_tmp != NULL) { RSA_up_ref(cert->rsa_tmp); |