summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2005-01-12 16:40:48 +0000
committerRichard Levitte <levitte@openssl.org>2005-01-12 16:40:48 +0000
commitc4d423511aa33fb0d8d8155a27fe05a294c1bd52 (patch)
treeece07d3cfc51921d814995316337b97149f070c8
parentb15a93a9c55c1dd4163eda3d61e090e320e51b8f (diff)
downloadopenssl-new-c4d423511aa33fb0d8d8155a27fe05a294c1bd52.tar.gz
Small typo, `mask' got the same value ORed to it twice instead of
`mask' and `emask' getting that operation done once each. Patch supplied by Nils Larsch <nils.larsch@cybertrust.com>
-rw-r--r--ssl/ssl_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index fb092813e7..c3bf50987c 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -1602,7 +1602,7 @@ void ssl_set_cert_masks(CERT *c, SSL_CIPHER *cipher)
if (rsa_enc || rsa_sign)
{
mask|=SSL_aRSA;
- mask|=SSL_aRSA;
+ emask|=SSL_aRSA;
}
if (dsa_sign)