aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2022-03-04 09:58:23 -0500
committerJack Lloyd <[email protected]>2022-03-04 09:58:23 -0500
commit6c951430b6574ee64b54ede7f930ce9dcd893d73 (patch)
tree0a1890c3700b7b29434fc9c5904474422b2143c7
parenta3d34fbba7fdceda52fbbb5d7f1eaf3a9ff70701 (diff)
Compile fix with Argon2 but not argon2fmt
-rw-r--r--src/cli/argon2.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cli/argon2.cpp b/src/cli/argon2.cpp
index 2b07027c3..e9f7e6285 100644
--- a/src/cli/argon2.cpp
+++ b/src/cli/argon2.cpp
@@ -6,13 +6,13 @@
#include "cli.h"
-#if defined(BOTAN_HAS_ARGON2)
- #include <botan/argon2.h>
+#if defined(BOTAN_HAS_ARGON2_FMT)
+ #include <botan/argon2fmt.h>
#endif
namespace Botan_CLI {
-#if defined(BOTAN_HAS_ARGON2)
+#if defined(BOTAN_HAS_ARGON2_FMT)
class Generate_Argon2 final : public Command
{