aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli')
-rw-r--r--src/cli/pubkey.cpp2
-rw-r--r--src/cli/tls_server.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/pubkey.cpp b/src/cli/pubkey.cpp
index 9567c9e0b..51224cd1b 100644
--- a/src/cli/pubkey.cpp
+++ b/src/cli/pubkey.cpp
@@ -191,7 +191,7 @@ class PK_Sign final : public Command
const std::string passphrase = get_passphrase_arg("Passphrase for " + key_file, "passphrase");
Botan::DataSource_Stream input(key_file);
- std::unique_ptr<Botan::Private_Key> key = Botan::PKCS8::load_key(input, passphrase);;
+ std::unique_ptr<Botan::Private_Key> key = Botan::PKCS8::load_key(input, passphrase);
if(!key)
{
diff --git a/src/cli/tls_server.cpp b/src/cli/tls_server.cpp
index ad300e8d4..cf1f7a8ff 100644
--- a/src/cli/tls_server.cpp
+++ b/src/cli/tls_server.cpp
@@ -277,7 +277,7 @@ class TLS_Server final : public Command, public Botan::TLS::Callbacks
m_line_buf.clear();
}
}
- };
+ }
void tls_emit_data(const uint8_t buf[], size_t length) override
{