Surround ctx_set_ctlog_list_file() with #ifndef OPENSSL_NO_CT
[openssl.git] / apps / apps.c
index 4e2322d7a76361927aec24340901826dc33ebc50..c76e3e345db916c88275442d21c70bc7c0a80ac6 100644 (file)
@@ -235,19 +235,19 @@ int ctx_set_verify_locations(SSL_CTX *ctx, const char *CAfile,
     return SSL_CTX_load_verify_locations(ctx, CAfile, CApath);
 }
 
+#ifndef OPENSSL_NO_CT
+
 int ctx_set_ctlog_list_file(SSL_CTX *ctx, const char *path)
 {
     if (path == NULL) {
-        if (SSL_CTX_set_default_ctlog_list_file(ctx) <= 0) {
-            BIO_puts(bio_err, "Failed to load default Certificate Transparency "
-                     "log list\n");
-        }
-        return 1; /* Do not treat failure to load the default as an error */
+        return SSL_CTX_set_default_ctlog_list_file(ctx);
     }
 
     return SSL_CTX_set_ctlog_list_file(ctx, path);
 }
 
+#endif
+
 int dump_cert_text(BIO *out, X509 *x)
 {
     char *p;