diff options
author | tb <> | 2022-02-03 18:35:24 +0000 |
---|---|---|
committer | tb <> | 2022-02-03 18:35:24 +0000 |
commit | abad11035c3183301acbcdfeaf956314f575e2df (patch) | |
tree | ff7a35d56f93a7c3bed9719e2d608f5652e251eb /src | |
parent | 34725c03a97d88fa74daeb95077fede8ac63f0d4 (diff) | |
download | openbsd-abad11035c3183301acbcdfeaf956314f575e2df.tar.gz openbsd-abad11035c3183301acbcdfeaf956314f575e2df.tar.bz2 openbsd-abad11035c3183301acbcdfeaf956314f575e2df.zip |
Remove commented variable declarations
Diffstat (limited to 'src')
-rw-r--r-- | src/usr.bin/openssl/s_cb.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/usr.bin/openssl/s_cb.c b/src/usr.bin/openssl/s_cb.c index 8c8e2c23ba..18bb6c033c 100644 --- a/src/usr.bin/openssl/s_cb.c +++ b/src/usr.bin/openssl/s_cb.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: s_cb.c,v 1.16 2022/02/03 17:42:54 tb Exp $ */ | 1 | /* $OpenBSD: s_cb.c,v 1.17 2022/02/03 18:35:24 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -203,11 +203,6 @@ int | |||
203 | set_cert_stuff(SSL_CTX * ctx, char *cert_file, char *key_file) | 203 | set_cert_stuff(SSL_CTX * ctx, char *cert_file, char *key_file) |
204 | { | 204 | { |
205 | if (cert_file != NULL) { | 205 | if (cert_file != NULL) { |
206 | /* | ||
207 | SSL *ssl; | ||
208 | X509 *x509; | ||
209 | */ | ||
210 | |||
211 | if (SSL_CTX_use_certificate_file(ctx, cert_file, | 206 | if (SSL_CTX_use_certificate_file(ctx, cert_file, |
212 | SSL_FILETYPE_PEM) <= 0) { | 207 | SSL_FILETYPE_PEM) <= 0) { |
213 | BIO_printf(bio_err, | 208 | BIO_printf(bio_err, |