Skip to content

Commit

Permalink
revert pkcs12 bundle update and adjsut help output
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobBarthelmeh committed Jan 27, 2025
1 parent 4dd75ed commit 06ae142
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Binary file modified certs/test-servercert.p12
Binary file not shown.
12 changes: 6 additions & 6 deletions src/tools/clu_funcs.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,14 @@ static const struct option crypt_algo_options[] = {
*/
void wolfCLU_help(void)
{
WOLFCLU_LOG(WOLFCLU_L0, "Linked with wolfSSL version %s%s",
LIBWOLFSSL_VERSION_STRING,
#ifdef HAVE_FIPS
": using FIPS mode"
#if defined(HAVE_FIPS)
static const char* isFips = ": using FIPS mode";
#else
""
static const char* isFips = "";
#endif
);

WOLFCLU_LOG(WOLFCLU_L0, "Linked with wolfSSL version %s%s",
LIBWOLFSSL_VERSION_STRING, isFips);
WOLFCLU_LOG(WOLFCLU_L0, " ");
WOLFCLU_LOG(WOLFCLU_L0, "-help Help, print out this help menu");
WOLFCLU_LOG(WOLFCLU_L0, " ");
Expand Down

0 comments on commit 06ae142

Please sign in to comment.