summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordtucker <dtucker@openbsd.org>2020-01-23 10:53:04 +0000
committerdtucker <dtucker@openbsd.org>2020-01-23 10:53:04 +0000
commit5c6d88f413bb13e4b5e38d50720ee2297e28f5a5 (patch)
tree331e863a5149d9624b18ea821f7ee62a6e0b74df
parentRemove the ssl_get_message function pointer from SSL_METHOD_INTERNAL. (diff)
downloadwireguard-openbsd-5c6d88f413bb13e4b5e38d50720ee2297e28f5a5.tar.xz
wireguard-openbsd-5c6d88f413bb13e4b5e38d50720ee2297e28f5a5.zip
Fix typo in comment.
-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 fac27fbd6e3..bb8fff3ac9c 100644
--- a/usr.bin/ssh/packet.c
+++ b/usr.bin/ssh/packet.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: packet.c,v 1.288 2020/01/23 10:24:29 dtucker Exp $ */
+/* $OpenBSD: packet.c,v 1.289 2020/01/23 10:53:04 dtucker Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -589,7 +589,7 @@ ssh_packet_close_internal(struct ssh *ssh, int do_close)
ssh_clear_newkeys(ssh, mode); /* next keys */
}
#ifdef WITH_ZLIB
- /* comression state is in shared mem, so we can only release it once */
+ /* compression state is in shared mem, so we can only release it once */
if (do_close && state->compression_buffer) {
sshbuf_free(state->compression_buffer);
if (state->compression_out_started) {