summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2006-05-26 13:27:58 +0000
committerDr. Stephen Henson <steve@openssl.org>2006-05-26 13:27:58 +0000
commit6657b9c73acfddc9b3fe86da0ee63494c7826742 (patch)
tree78f069bfacc8dbcd81120663c7cddb9bfe331d1a /ssl
parentba0d04a986db21c1a0777f6df58413dbe8711a29 (diff)
Fix warnings.
Diffstat (limited to 'ssl')
-rw-r--r--ssl/s3_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
index c59fb556d9..7a87da6105 100644
--- a/ssl/s3_lib.c
+++ b/ssl/s3_lib.c
@@ -2048,7 +2048,7 @@ SSL_CIPHER *ssl3_choose_cipher(SSL *s, STACK_OF(SSL_CIPHER) *clnt,
#ifndef OPENSSL_NO_TLSEXT
#ifndef OPENSSL_NO_EC
int ec_ok, ec_nid;
- unsigned char ec_search1, ec_search2;
+ unsigned char ec_search1 = 0, ec_search2 = 0;
#endif /* OPENSSL_NO_EC */
#endif /* OPENSSL_NO_TLSEXT */
CERT *cert;