The unified diff between revisions [13704fef..] and [b773b0a7..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'src/config.cpp'
#
#
# patch "src/config.cpp"
# from [5b03caccc6f428dee4805f937c74715d5144f83f]
# to [371b5e52da741c35e70f61841faa85ff4d7c22b7]
#
============================================================
--- src/config.cpp 5b03caccc6f428dee4805f937c74715d5144f83f
+++ src/config.cpp 371b5e52da741c35e70f61841faa85ff4d7c22b7
@@ -5,11 +5,8 @@
#include <botan/config.h>
#include <botan/libstate.h>
-#include <botan/lookup.h>
-#include <botan/charset.h>
-#include <botan/parsing.h>
+#include <botan/mutex.h>
#include <botan/stl_util.h>
-#include <botan/mutex.h>
#include <string>
namespace Botan {
@@ -121,12 +118,4 @@ std::string Config::option(const std::st
return get("conf", key);
}
-/*************************************************
-* Get the config setting as a time *
-*************************************************/
-u32bit Config::option_as_time(const std::string& key) const
- {
- return timespec_to_u32bit(option(key));
- }
-
}