diff options
author | Jack Lloyd <[email protected]> | 2016-08-31 10:40:51 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-08-31 10:40:51 -0400 |
commit | 01e148ca3a3adce903b8e198325557c91947b006 (patch) | |
tree | 36e6a0d99ad266072d80d51fe995e03c08337593 | |
parent | c1fe86cbf842392118c977b3799070de35ee56fc (diff) |
Fix another unused variable warning
-rw-r--r-- | src/cli/tls_client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/tls_client.cpp b/src/cli/tls_client.cpp index 082daf4ac..137fdfdbd 100644 --- a/src/cli/tls_client.cpp +++ b/src/cli/tls_client.cpp @@ -310,7 +310,7 @@ class TLS_Client final : public Command, public Botan::TLS::Callbacks output() << "Alert: " << alert.type_string() << "\n"; } - void tls_record_received(uint64_t seq_no, const uint8_t buf[], size_t buf_size) + void tls_record_received(uint64_t /*seq_no*/, const uint8_t buf[], size_t buf_size) { for(size_t i = 0; i != buf_size; ++i) output() << buf[i]; |