diff options
author | 2014-07-09 11:25:42 +0000 | |
---|---|---|
committer | 2014-07-09 11:25:42 +0000 | |
commit | 9737895d1e5bc320b03f7902241f6359586a437b (patch) | |
tree | df6ebba7a59c009a75ba4570994eff672b345470 /lib/libssl/ssl_cert.c | |
parent | now that mclgeti doesnt do the rx ring accounting, cluster allocation (diff) | |
download | wireguard-openbsd-9737895d1e5bc320b03f7902241f6359586a437b.tar.xz wireguard-openbsd-9737895d1e5bc320b03f7902241f6359586a437b.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 '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); |