diff options
author | Simon Warta <[email protected]> | 2015-07-16 17:19:32 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2015-07-16 19:01:37 +0200 |
commit | 2ea885ffe9f44fada457b9cc8e169418c57f1bdb (patch) | |
tree | 73897ab4cca1050e9c4bb7f57a3ef3508514c6f6 /src/lib/cert/x509/certstor.cpp | |
parent | acac09fc411eeb8d52f4565ba50c057298552679 (diff) |
Refactor internal/filesystem.h
Closes #198
Diffstat (limited to 'src/lib/cert/x509/certstor.cpp')
-rw-r--r-- | src/lib/cert/x509/certstor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/cert/x509/certstor.cpp b/src/lib/cert/x509/certstor.cpp index d075fe706..e3498f602 100644 --- a/src/lib/cert/x509/certstor.cpp +++ b/src/lib/cert/x509/certstor.cpp @@ -6,7 +6,7 @@ */ #include <botan/certstor.h> -#include <botan/fs.h> +#include <botan/internal/filesystem.h> namespace Botan { @@ -118,7 +118,7 @@ Certificate_Store_In_Memory::Certificate_Store_In_Memory(const std::string& dir) if(dir == "") return; - std::vector<std::string> maybe_certs = list_all_readable_files_in_or_under(dir); + std::vector<std::string> maybe_certs = get_files_recursive(dir); for(auto&& cert_file : maybe_certs) { try |