summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2005-06-08 22:22:33 +0000
committerNils Larsch <nils@openssl.org>2005-06-08 22:22:33 +0000
commit052ec899279e36359bb0f554732cec5551cf30ea (patch)
treeaa147113d9ef5c3621e03b02a4a6c1a92727decd /ssl
parent2073d95fb48268187a554ae8c77aee189a29e193 (diff)
use "=" instead of "|=", fix typo
Diffstat (limited to 'ssl')
-rw-r--r--ssl/ssl_ciph.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ssl/ssl_ciph.c b/ssl/ssl_ciph.c
index 038412a92c..b071a6309f 100644
--- a/ssl/ssl_ciph.c
+++ b/ssl/ssl_ciph.c
@@ -740,11 +740,11 @@ static int ssl_cipher_process_rulestr(const char *rule_str,
if (!found)
break; /* ignore this entry */
- algorithms |= (ca_list[j]->algorithms & ~mask) |
- (ca_list[j]->algorithms & algorithms & mask);
+ algorithms = (ca_list[j]->algorithms & ~mask) |
+ (ca_list[j]->algorithms & algorithms & mask);
mask |= ca_list[j]->mask;
- algo_strength |= (ca_list[j]->algo_strength & ~mask_strength) |
- (ca_list[j]->algo_strength & algorithms & mask_strength);
+ algo_strength = (ca_list[j]->algo_strength & ~mask_strength) |
+ (ca_list[j]->algo_strength & algo_strength & mask_strength);
mask_strength |= ca_list[j]->mask_strength;
if (!multi) break;