summaryrefslogtreecommitdiff
path: root/src/authAlgoFactory.cpp
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2009-01-18 23:31:33 +0000
committerChristian Pointner <equinox@anytun.org>2009-01-18 23:31:33 +0000
commita39dd07546ab48648021f03e87b2831ffaf50df8 (patch)
tree788b8db0b2dd4162318084739b863412b7a73612 /src/authAlgoFactory.cpp
parentdoing replay protection before learning remote host (diff)
some cleanup
Diffstat (limited to 'src/authAlgoFactory.cpp')
-rw-r--r--src/authAlgoFactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/authAlgoFactory.cpp b/src/authAlgoFactory.cpp
index 648d6f8..8fa16fc 100644
--- a/src/authAlgoFactory.cpp
+++ b/src/authAlgoFactory.cpp
@@ -40,7 +40,7 @@ AuthAlgo* AuthAlgoFactory::create(std::string const& type, kd_dir_t dir)
{
if( type == "null" )
return new NullAuthAlgo();
-#ifndef NOCRYPT
+#ifndef NO_CRYPT
else if( type == "sha1" )
return new Sha1AuthAlgo(dir);
#endif