1
0
mirror of https://github.com/mtrojnar/osslsigncode.git synced 2025-04-09 10:38:05 -05:00

Print default -CAfile in "osslsigncode -v"

Fix 
This commit is contained in:
Michał Trojnara 2024-02-12 12:28:27 +01:00
parent dcf58a00e7
commit cedb8b5798

@ -3785,6 +3785,8 @@ static char *get_cafile(void)
static void print_version(void) static void print_version(void)
{ {
char *cafile = get_cafile();
#ifdef PACKAGE_STRING #ifdef PACKAGE_STRING
printf("%s, using:\n", PACKAGE_STRING); printf("%s, using:\n", PACKAGE_STRING);
#else /* PACKAGE_STRING */ #else /* PACKAGE_STRING */
@ -3796,6 +3798,12 @@ static void print_version(void)
#else /* ENABLE_CURL */ #else /* ENABLE_CURL */
printf("\t%s\n", "no libcurl available"); printf("\t%s\n", "no libcurl available");
#endif /* ENABLE_CURL */ #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 #ifdef PACKAGE_BUGREPORT
printf("\nPlease send bug-reports to " PACKAGE_BUGREPORT "\n"); printf("\nPlease send bug-reports to " PACKAGE_BUGREPORT "\n");
#endif /* PACKAGE_BUGREPORT */ #endif /* PACKAGE_BUGREPORT */