diff options
author | lloyd <[email protected]> | 2010-07-27 15:59:58 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-07-27 15:59:58 +0000 |
commit | b910f61fd17fabdf96140f921dc90ca8dbd364d3 (patch) | |
tree | 5094a934e7482da5950e533d000cf1a7cb0cecfd /src/libstate/libstate.cpp | |
parent | 46b58b9602dbc8eea6080d2aefc878f8de9f15e4 (diff) |
Rename Default_Engine to Core_Engine which describes its purposes
(slightly) better.
Diffstat (limited to 'src/libstate/libstate.cpp')
-rw-r--r-- | src/libstate/libstate.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstate/libstate.cpp b/src/libstate/libstate.cpp index 1db9ca44c..8d8634bab 100644 --- a/src/libstate/libstate.cpp +++ b/src/libstate/libstate.cpp @@ -10,7 +10,7 @@ #include <botan/engine.h> #include <botan/cpuid.h> #include <botan/internal/defalloc.h> -#include <botan/internal/default_engine.h> +#include <botan/internal/core_engine.h> #include <botan/internal/mutex.h> #include <botan/internal/mux_noop.h> #include <botan/internal/stl_util.h> @@ -301,7 +301,7 @@ void Library_State::initialize(bool thread_safe) algorithm_factory().add_engine(new Assembler_Engine); #endif - algorithm_factory().add_engine(new Default_Engine); + algorithm_factory().add_engine(new Core_Engine); #if defined(BOTAN_HAS_SELFTESTS) confirm_startup_self_tests(algorithm_factory()); |