summaryrefslogtreecommitdiffstats
path: root/apps/ciphers.c
diff options
context:
space:
mode:
authorBen Laurie <ben@links.org>2014-03-29 19:51:58 +0000
committerBen Laurie <ben@links.org>2014-03-29 19:51:58 +0000
commit5a49001bde4e0cf8e34da55a9cfe9b5255275e10 (patch)
treea8931f5027638453c741abd76d1497f9028c3139 /apps/ciphers.c
parent0f817d3b2705f315f4c8c22b5dfee0218848f37a (diff)
Fix warning.
Diffstat (limited to 'apps/ciphers.c')
-rw-r--r--apps/ciphers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/ciphers.c b/apps/ciphers.c
index 52da70245a..4c2f01d8cf 100644
--- a/apps/ciphers.c
+++ b/apps/ciphers.c
@@ -96,7 +96,7 @@ int MAIN(int argc, char **argv)
SSL *ssl=NULL;
char *ciphers=NULL;
const SSL_METHOD *meth=NULL;
- STACK_OF(SSL_CIPHER) *sk;
+ STACK_OF(SSL_CIPHER) *sk=NULL;
char buf[512];
BIO *STDout=NULL;