diff options
-rw-r--r-- | packet.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: packet.c,v 1.259 2017/06/01 06:16:43 djm Exp $ */ | 1 | /* $OpenBSD: packet.c,v 1.260 2017/06/06 09:12:17 dtucker Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -600,7 +600,7 @@ ssh_packet_close_internal(struct ssh *ssh, int do_close) | |||
600 | deflateEnd(stream); | 600 | deflateEnd(stream); |
601 | } | 601 | } |
602 | if (state->compression_in_started) { | 602 | if (state->compression_in_started) { |
603 | z_streamp stream = &state->compression_out_stream; | 603 | z_streamp stream = &state->compression_in_stream; |
604 | debug("compress incoming: " | 604 | debug("compress incoming: " |
605 | "raw data %llu, compressed %llu, factor %.2f", | 605 | "raw data %llu, compressed %llu, factor %.2f", |
606 | (unsigned long long)stream->total_out, | 606 | (unsigned long long)stream->total_out, |