aboutsummaryrefslogtreecommitdiffstats
path: root/doc/examples/bzip.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'doc/examples/bzip.cpp')
-rw-r--r--doc/examples/bzip.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/examples/bzip.cpp b/doc/examples/bzip.cpp
index a16d4f8fe..1abe4d309 100644
--- a/doc/examples/bzip.cpp
+++ b/doc/examples/bzip.cpp
@@ -12,7 +12,7 @@ This file is in the public domain
#include <iostream>
#include <botan/botan.h>
-#if defined(BOTAN_EXT_COMPRESSOR_BZIP2)
+#if defined(BOTAN_HAS_COMPRESSOR_BZIP2)
#include <botan/bzip2.h>
#endif
@@ -51,7 +51,7 @@ int main(int argc, char* argv[])
try {
Botan::Filter* bzip = 0;
-#ifdef BOTAN_EXT_COMPRESSOR_BZIP2
+#ifdef BOTAN_HAS_COMPRESSOR_BZIP2
if(decompress)
bzip = new Botan::Bzip_Decompression(small);
else