diff options
Diffstat (limited to 'src/cli/credentials.h')
-rw-r--r-- | src/cli/credentials.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/cli/credentials.h b/src/cli/credentials.h index 99733e42b..3b7a177fc 100644 --- a/src/cli/credentials.h +++ b/src/cli/credentials.h @@ -50,9 +50,8 @@ class Basic_Credentials_Manager : public Botan::Credentials_Manager { cert.certs.push_back(Botan::X509_Certificate(in)); } - catch(std::exception& e) + catch(std::exception&) { - } } @@ -74,9 +73,8 @@ class Basic_Credentials_Manager : public Botan::Credentials_Manager m_certstores.push_back(cs); } } - catch(std::exception& e) + catch(std::exception&) { - //std::cout << e.what() << "\n"; } } |