From cedb8b57982b22078beb6df62c0c1f895a54ff94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Trojnara?= Date: Mon, 12 Feb 2024 12:28:27 +0100 Subject: [PATCH] Print default -CAfile in "osslsigncode -v" Fix #344 --- osslsigncode.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/osslsigncode.c b/osslsigncode.c index e75b466..32dc876 100644 --- a/osslsigncode.c +++ b/osslsigncode.c @@ -3785,6 +3785,8 @@ static char *get_cafile(void) static void print_version(void) { + char *cafile = get_cafile(); + #ifdef PACKAGE_STRING printf("%s, using:\n", PACKAGE_STRING); #else /* PACKAGE_STRING */ @@ -3796,6 +3798,12 @@ static void print_version(void) #else /* ENABLE_CURL */ printf("\t%s\n", "no libcurl available"); #endif /* ENABLE_CURL */ + if (cafile) { + printf("Default -CAfile location: %s\n", cafile); + OPENSSL_free(cafile); + } else { + printf("No default -CAfile location detected\n"); + } #ifdef PACKAGE_BUGREPORT printf("\nPlease send bug-reports to " PACKAGE_BUGREPORT "\n"); #endif /* PACKAGE_BUGREPORT */