From: dtucker@openbsd.org Date: Thu, 23 Jan 2020 10:53:04 +0000 (+0000) Subject: upstream: Fix typo in comment. X-Git-Tag: V_8_2_P1~84 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbce7c1a898ae75286349822950682cf46346121;p=thirdparty%2Fopenssh-portable.git upstream: Fix typo in comment. OpenBSD-Commit-ID: d1d7a6553208bf439378fd1cf686a828aceb353a --- diff --git a/packet.c b/packet.c index cffadd9a4..38d3ea239 100644 --- a/packet.c +++ b/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 * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -614,7 +614,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) {