提交 052ec899 编写于 作者: N Nils Larsch

use "=" instead of "|=", fix typo

上级 2073d95f
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册