aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_x509_dn.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-04-09 16:04:05 -0400
committerJack Lloyd <[email protected]>2018-04-09 18:48:46 -0400
commit69462a1145ffe553ae17c3a284baf58edb0fde63 (patch)
treeb6bc6c4eddd08e237bd9a047118906210887ebda /src/tests/test_x509_dn.cpp
parent5b2570c0bd2888939b361a5cd546ddbcc248deb4 (diff)
Fix incorrect macro check
Diffstat (limited to 'src/tests/test_x509_dn.cpp')
-rw-r--r--src/tests/test_x509_dn.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/test_x509_dn.cpp b/src/tests/test_x509_dn.cpp
index 74803909b..378e7b109 100644
--- a/src/tests/test_x509_dn.cpp
+++ b/src/tests/test_x509_dn.cpp
@@ -6,14 +6,14 @@
#include "tests.h"
-#if defined(BOTAN_HAS_CERTIFICATES)
+#if defined(BOTAN_HAS_X509_CERTIFICATES)
#include <botan/x509_dn.h>
#include <botan/ber_dec.h>
#endif
namespace Botan_Tests {
-#if defined(BOTAN_HAS_CERTIFICATES)
+#if defined(BOTAN_HAS_X509_CERTIFICATES)
class X509_DN_Comparisons_Tests final : public Text_Based_Test
{
public: