diff options
author | 2020-01-23 10:53:04 +0000 | |
---|---|---|
committer | 2020-01-23 10:53:04 +0000 | |
commit | 5c6d88f413bb13e4b5e38d50720ee2297e28f5a5 (patch) | |
tree | 331e863a5149d9624b18ea821f7ee62a6e0b74df | |
parent | Remove the ssl_get_message function pointer from SSL_METHOD_INTERNAL. (diff) | |
download | wireguard-openbsd-5c6d88f413bb13e4b5e38d50720ee2297e28f5a5.tar.xz wireguard-openbsd-5c6d88f413bb13e4b5e38d50720ee2297e28f5a5.zip |
Fix typo in comment.
-rw-r--r-- | usr.bin/ssh/packet.c | 4 |
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) { |