From: Richard Levitte Date: Wed, 12 Jan 2005 16:40:48 +0000 (+0000) Subject: Small typo, `mask' got the same value ORed to it twice instead of X-Git-Tag: OpenSSL_0_9_7g~17^2~78 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=c4d423511aa33fb0d8d8155a27fe05a294c1bd52 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 --- 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)