diff options
author | lloyd <[email protected]> | 2009-10-09 19:05:09 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-10-09 19:05:09 +0000 |
commit | ad3e359441f15e4f1fb489cf2b4be024c23a72d2 (patch) | |
tree | f19d57916f9a5caaffa1e6818cda0d92ab123583 /checks/validate.cpp | |
parent | ebfa4f1f5d07857b1c000f36c8f8cea0984db121 (diff) |
Remove unused arg
Diffstat (limited to 'checks/validate.cpp')
-rw-r--r-- | checks/validate.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/checks/validate.cpp b/checks/validate.cpp index 6a8fed3d9..ff26e855a 100644 --- a/checks/validate.cpp +++ b/checks/validate.cpp @@ -48,7 +48,7 @@ u32bit random_word(Botan::RandomNumberGenerator& rng, Botan::Filter* lookup(const std::string&, const std::vector<std::string>&); bool failed_test(const std::string&, std::vector<std::string>, bool, bool, - const std::string&, std::string&, + std::string&, Botan::RandomNumberGenerator& rng); std::vector<std::string> parse(const std::string&); @@ -151,7 +151,7 @@ u32bit do_validation_tests(const std::string& filename, { failed = failed_test(algorithm, substr, is_extension, should_pass, - section, last_missing, rng); + last_missing, rng); } catch(std::exception& e) { @@ -181,7 +181,6 @@ u32bit do_validation_tests(const std::string& filename, bool failed_test(const std::string& algo, std::vector<std::string> params, bool is_extension, bool exp_pass, - const std::string& section, std::string& last_missing, Botan::RandomNumberGenerator& rng) { |