diff options
author | Christian Pointner <equinox@anytun.org> | 2009-01-18 23:31:33 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2009-01-18 23:31:33 +0000 |
commit | a39dd07546ab48648021f03e87b2831ffaf50df8 (patch) | |
tree | 788b8db0b2dd4162318084739b863412b7a73612 /src/cipherFactory.cpp | |
parent | doing replay protection before learning remote host (diff) |
some cleanup
Diffstat (limited to 'src/cipherFactory.cpp')
-rw-r--r-- | src/cipherFactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cipherFactory.cpp b/src/cipherFactory.cpp index 02fff5d..e53620e 100644 --- a/src/cipherFactory.cpp +++ b/src/cipherFactory.cpp @@ -40,7 +40,7 @@ Cipher* CipherFactory::create(std::string const& type, kd_dir_t dir) { if( type == "null" ) return new NullCipher(); -#ifndef NOCRYPT +#ifndef NO_CRYPT else if( type == "aes-ctr" ) return new AesIcmCipher(dir); else if( type == "aes-ctr-128" ) |