diff options
author | lloyd <[email protected]> | 2008-06-17 18:23:44 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-06-17 18:23:44 +0000 |
commit | cbf406bce0ec8bb937e0ec6062d94ad709bf8794 (patch) | |
tree | 54869667b5944f6305a8a5f091441cfbf812f225 | |
parent | 1e28e27225f91c72baf02cfe510842de8c799ce8 (diff) |
The FTW_EntropySource constructor no longer takes a default argument:
specify it when we instantiate one in Builtin_Modules
-rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index b69e6c5f7..6ddd02afb 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -183,7 +183,7 @@ std::vector<EntropySource*> Builtin_Modules::entropy_sources() const #endif #if defined(BOTAN_EXT_ENTROPY_SRC_FTW) - sources.push_back(new FTW_EntropySource); + sources.push_back(new FTW_EntropySource("/proc")); #endif return sources; |