summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/packet.c
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2022-01-01 01:55:31 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2022-01-01 01:55:31 +0000
commit985421b5149560ad814fd1e841f6029e6b0c480b (patch)
tree06eb1cb129a4b8b1a4a6e8c9178d34810a970586 /usr.bin/ssh/packet.c
parent2c347e29a0c17aace88982921ec7d42cc6628f68 (diff)
spelling
ok dtucker@
Diffstat (limited to 'usr.bin/ssh/packet.c')
-rw-r--r--usr.bin/ssh/packet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/packet.c b/usr.bin/ssh/packet.c
index a150afd06df..3af35f0cc58 100644
--- a/usr.bin/ssh/packet.c
+++ b/usr.bin/ssh/packet.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: packet.c,v 1.303 2021/11/25 23:02:24 djm Exp $ */
+/* $OpenBSD: packet.c,v 1.304 2022/01/01 01:55:30 jsg Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -973,7 +973,7 @@ ssh_packet_need_rekeying(struct ssh *ssh, u_int outbound_packet_len)
state->p_read.packets > MAX_PACKETS)
return 1;
- /* Rekey after (cipher-specific) maxiumum blocks */
+ /* Rekey after (cipher-specific) maximum blocks */
out_blocks = ROUNDUP(outbound_packet_len,
state->newkeys[MODE_OUT]->enc.block_size);
return (state->max_blocks_out &&