Squashed logically dead code for curl response code for openssl version 3.0.0 and later, CID 1585046

This commit is contained in:
olszomal 2024-04-10 09:35:12 +02:00 committed by Michał Trojnara
parent ded1f7aa67
commit 16c5e5aa4a

View File

@ -974,7 +974,11 @@ static int add_timestamp(PKCS7 *p7, FILE_FORMAT_CTX *ctx, char *url, int rfc3161
BIO *req, *resp; BIO *req, *resp;
int verbose = ctx->options->verbose || ctx->options->ntsurl == 1; int verbose = ctx->options->verbose || ctx->options->ntsurl == 1;
int res = 1; int res = 1;
#if OPENSSL_VERSION_NUMBER<0x30000000L
#ifdef ENABLE_CURL
long http_code = -1; long http_code = -1;
#endif /* ENABLE_CURL */
#endif /* OPENSSL_VERSION_NUMBER<0x30000000L */
/* Encode timestamp request */ /* Encode timestamp request */
if (rfc3161) { if (rfc3161) {
@ -1027,12 +1031,15 @@ static int add_timestamp(PKCS7 *p7, FILE_FORMAT_CTX *ctx, char *url, int rfc3161
res = attach_authenticode_response(p7, response, verbose); res = attach_authenticode_response(p7, response, verbose);
} }
if (res && verbose) { if (res && verbose) {
if (http_code != -1) { #if OPENSSL_VERSION_NUMBER<0x30000000L
#ifdef ENABLE_CURL
if (http_code != -1)
printf("Failed to convert timestamp reply from %s; " printf("Failed to convert timestamp reply from %s; "
"HTTP status %ld\n", url, http_code); "HTTP status %ld\n", url, http_code);
} else { else
#endif /* ENABLE_CURL */
#endif /* OPENSSL_VERSION_NUMBER<0x30000000L */
printf("Failed to convert timestamp reply from %s\n", url); printf("Failed to convert timestamp reply from %s\n", url);
}
ERR_print_errors_fp(stdout); ERR_print_errors_fp(stdout);
} }
BIO_free_all(resp); BIO_free_all(resp);