diff options
Diffstat (limited to 'src/authAlgoFactory.cpp')
-rw-r--r-- | src/authAlgoFactory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/authAlgoFactory.cpp b/src/authAlgoFactory.cpp index 333c47c..648d6f8 100644 --- a/src/authAlgoFactory.cpp +++ b/src/authAlgoFactory.cpp @@ -36,13 +36,13 @@ #include "authAlgo.h" -AuthAlgo* AuthAlgoFactory::create(std::string const& type) +AuthAlgo* AuthAlgoFactory::create(std::string const& type, kd_dir_t dir) { if( type == "null" ) return new NullAuthAlgo(); #ifndef NOCRYPT else if( type == "sha1" ) - return new Sha1AuthAlgo(); + return new Sha1AuthAlgo(dir); #endif else throw std::invalid_argument("auth algo not available"); |