aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelen <jjelen@redhat.com>2020-06-19 13:33:21 +0200
committerAndreas Schneider <asn@cryptomilk.org>2020-07-16 12:01:04 +0200
commitf85464b9002c819031951e8bb3fdb6624c4cb906 (patch)
tree398962914313cdfd2da8d05a43e728cbfd88c971
parentdcae43fa6bf0e5d4b7e9e61bee3f1582a04dbb14 (diff)
downloadlibssh-f85464b9002c819031951e8bb3fdb6624c4cb906.tar.gz
libssh-f85464b9002c819031951e8bb3fdb6624c4cb906.tar.xz
libssh-f85464b9002c819031951e8bb3fdb6624c4cb906.zip
packet: Fix unterminated brace and better context name in debug message
Signed-off-by: Jakub Jelen <jjelen@redhat.com> Reviewed-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r--src/packet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/packet.c b/src/packet.c
index 3d675252..f14731c9 100644
--- a/src/packet.c
+++ b/src/packet.c
@@ -1036,7 +1036,7 @@ static bool ssh_packet_need_rekey(ssh_session session,
in_cipher->blocks + next_blocks > in_cipher->max_blocks);
SSH_LOG(SSH_LOG_PACKET,
- "packet: [data_rekey_needed=%d, out_blocks=%" PRIu64 ", in_blocks=%" PRIu64,
+ "rekey: [data_rekey_needed=%d, out_blocks=%" PRIu64 ", in_blocks=%" PRIu64 "]",
data_rekey_needed,
out_cipher->blocks + next_blocks,
in_cipher->blocks + next_blocks);