Skip to content

Commit 06ae142

Browse files
revert pkcs12 bundle update and adjsut help output
1 parent 4dd75ed commit 06ae142

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

certs/test-servercert.p12

-83 Bytes
Binary file not shown.

src/tools/clu_funcs.c

+6-6
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ static const struct option crypt_algo_options[] = {
6161
*/
6262
void wolfCLU_help(void)
6363
{
64-
WOLFCLU_LOG(WOLFCLU_L0, "Linked with wolfSSL version %s%s",
65-
LIBWOLFSSL_VERSION_STRING,
66-
#ifdef HAVE_FIPS
67-
": using FIPS mode"
64+
#if defined(HAVE_FIPS)
65+
static const char* isFips = ": using FIPS mode";
6866
#else
69-
""
67+
static const char* isFips = "";
7068
#endif
71-
);
69+
70+
WOLFCLU_LOG(WOLFCLU_L0, "Linked with wolfSSL version %s%s",
71+
LIBWOLFSSL_VERSION_STRING, isFips);
7272
WOLFCLU_LOG(WOLFCLU_L0, " ");
7373
WOLFCLU_LOG(WOLFCLU_L0, "-help Help, print out this help menu");
7474
WOLFCLU_LOG(WOLFCLU_L0, " ");

0 commit comments

Comments
 (0)