summaryrefslogtreecommitdiffstats
path: root/ssl/ssl_ciph.c
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2006-07-02 14:43:21 +0000
committerBen Laurie <ben@openssl.org>2006-07-02 14:43:21 +0000
commit616f58165004293bd243f113df3e2f0820ee8a11 (patch)
tree3321f6d20a92e7b5b58f6e95c4af693fdfe7ddf4 /ssl/ssl_ciph.c
parent57e802656f06613b70036e4e4c8795b1ed6be5ba (diff)
Fix warning.
Diffstat (limited to 'ssl/ssl_ciph.c')
-rw-r--r--ssl/ssl_ciph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_ciph.c b/ssl/ssl_ciph.c
index 9ad2a3d504..496b0d245b 100644
--- a/ssl/ssl_ciph.c
+++ b/ssl/ssl_ciph.c
@@ -745,7 +745,7 @@ static int ssl_cipher_process_rulestr(const char *rule_str,
unsigned long algorithms, mask, algo_strength, mask_strength;
const char *l, *start, *buf;
int j, multi, found, rule, retval, ok, buflen;
- unsigned long cipher_id;
+ unsigned long cipher_id = 0;
char ch;
retval = 1;