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>
This commit is contained in:
Richard Levitte 2005-01-12 16:40:48 +00:00
parent b15a93a9c5
commit c4d423511a

View File

@ -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)