Commit c4d42351 authored by Richard Levitte's avatar Richard Levitte
Browse files

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>
parent b15a93a9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)