diff options
author | lloyd <[email protected]> | 2008-11-11 01:28:20 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-11 01:28:20 +0000 |
commit | 37955fb85460069cbef4dbe95222ed80d2b4152b (patch) | |
tree | 1425d78a8e2af80e3ed3df8aad684d24dd2537a4 /src/libstate/init.cpp | |
parent | e2d4cb5a9cd046453e79589d6c182bc23975ae4b (diff) |
Add back default empty arguments to LibraryInitializer
Set default thread safety to false
Diffstat (limited to 'src/libstate/init.cpp')
-rw-r--r-- | src/libstate/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstate/init.cpp b/src/libstate/init.cpp index 890871411..377055bd4 100644 --- a/src/libstate/init.cpp +++ b/src/libstate/init.cpp @@ -14,7 +14,7 @@ namespace Botan { *************************************************/ void LibraryInitializer::initialize(const std::string& arg_string) { - bool thread_safe = true; + bool thread_safe = false; const std::vector<std::string> arg_list = split_on(arg_string, ' '); for(u32bit j = 0; j != arg_list.size(); ++j) |