diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-09-10 09:20:59 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-09-12 16:29:04 +0200 |
commit | aca67e2775b63cf558f2bab10cf52264e554f1e5 (patch) | |
tree | 7c5708c71f11f7c6607afa368a76dd2f714d180d /lib | |
parent | 8e2f16e66f507ffd7a61b41e3052527b91883182 (diff) |
ssluse: removed redundant check that is always true
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ssluse.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/ssluse.c b/lib/ssluse.c index 08ce4ccc7..474bc9a33 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -1595,10 +1595,8 @@ ossl_connect_step1(struct connectdata *conn, if ( !lookup || (!X509_load_crl_file(lookup,data->set.str[STRING_SSL_CRLFILE], X509_FILETYPE_PEM)) ) { - failf(data,"error loading CRL file :\n" - " CRLfile: %s\n", - data->set.str[STRING_SSL_CRLFILE]? - data->set.str[STRING_SSL_CRLFILE]: "none"); + failf(data,"error loading CRL file: %s\n", + data->set.str[STRING_SSL_CRLFILE]); return CURLE_SSL_CRL_BADFILE; } else { |