From c4d423511aa33fb0d8d8155a27fe05a294c1bd52 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 12 Jan 2005 16:40:48 +0000 Subject: [PATCH] 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 --- ssl/ssl_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.34.1