diff options
author | Colin Watson <cjwatson@debian.org> | 2017-06-06 15:02:28 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2017-06-06 15:03:25 +0100 |
commit | 6a6b1543715aaeeb9ddb07addf7e6b9049a431fb (patch) | |
tree | b73d4dc7b813b5cc534a2cf713d93f2cd0ad116b /debian/patches/fix-incoming-compression-statistics.patch | |
parent | af27669f905133925224acc753067dea710881dd (diff) | |
parent | a93e5207256eff3a51db335c5a12b3ad2291f686 (diff) |
Fix incoming compression statistics (thanks, Russell Coker; closes: #797964).
Diffstat (limited to 'debian/patches/fix-incoming-compression-statistics.patch')
-rw-r--r-- | debian/patches/fix-incoming-compression-statistics.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/debian/patches/fix-incoming-compression-statistics.patch b/debian/patches/fix-incoming-compression-statistics.patch new file mode 100644 index 000000000..f503baa07 --- /dev/null +++ b/debian/patches/fix-incoming-compression-statistics.patch | |||
@@ -0,0 +1,27 @@ | |||
1 | From a93e5207256eff3a51db335c5a12b3ad2291f686 Mon Sep 17 00:00:00 2001 | ||
2 | From: Russell Coker <russell@coker.com.au> | ||
3 | Date: Tue, 6 Jun 2017 15:00:20 +0100 | ||
4 | Subject: Fix incoming compression statistics | ||
5 | |||
6 | Bug-Debian: https://bugs.debian.org/797964 | ||
7 | Forwarded: https://lists.mindrot.org/pipermail/openssh-unix-dev/2017-June/036077.html | ||
8 | Last-Update: 2017-06-06 | ||
9 | |||
10 | Patch-Name: fix-incoming-compression-statistics.patch | ||
11 | --- | ||
12 | packet.c | 2 +- | ||
13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
14 | |||
15 | diff --git a/packet.c b/packet.c | ||
16 | index ad1f6b49..afcde6f3 100644 | ||
17 | --- a/packet.c | ||
18 | +++ b/packet.c | ||
19 | @@ -587,7 +587,7 @@ ssh_packet_close(struct ssh *ssh) | ||
20 | deflateEnd(stream); | ||
21 | } | ||
22 | if (state->compression_in_started) { | ||
23 | - z_streamp stream = &state->compression_out_stream; | ||
24 | + z_streamp stream = &state->compression_in_stream; | ||
25 | debug("compress incoming: " | ||
26 | "raw data %llu, compressed %llu, factor %.2f", | ||
27 | (unsigned long long)stream->total_out, | ||