diff options
Diffstat (limited to 'compress.c')
-rw-r--r-- | compress.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/compress.c b/compress.c index 85a361d3a..0d1c7e55e 100644 --- a/compress.c +++ b/compress.c | |||
@@ -12,7 +12,7 @@ | |||
12 | */ | 12 | */ |
13 | 13 | ||
14 | #include "includes.h" | 14 | #include "includes.h" |
15 | RCSID("$OpenBSD: compress.c,v 1.19 2002/03/18 17:31:54 provos Exp $"); | 15 | RCSID("$OpenBSD: compress.c,v 1.21 2004/01/13 19:45:15 markus Exp $"); |
16 | 16 | ||
17 | #include "log.h" | 17 | #include "log.h" |
18 | #include "buffer.h" | 18 | #include "buffer.h" |
@@ -56,12 +56,14 @@ buffer_compress_init_recv(void) | |||
56 | void | 56 | void |
57 | buffer_compress_uninit(void) | 57 | buffer_compress_uninit(void) |
58 | { | 58 | { |
59 | debug("compress outgoing: raw data %lu, compressed %lu, factor %.2f", | 59 | debug("compress outgoing: raw data %llu, compressed %llu, factor %.2f", |
60 | outgoing_stream.total_in, outgoing_stream.total_out, | 60 | (unsigned long long)outgoing_stream.total_in, |
61 | (unsigned long long)outgoing_stream.total_out, | ||
61 | outgoing_stream.total_in == 0 ? 0.0 : | 62 | outgoing_stream.total_in == 0 ? 0.0 : |
62 | (double) outgoing_stream.total_out / outgoing_stream.total_in); | 63 | (double) outgoing_stream.total_out / outgoing_stream.total_in); |
63 | debug("compress incoming: raw data %lu, compressed %lu, factor %.2f", | 64 | debug("compress incoming: raw data %llu, compressed %llu, factor %.2f", |
64 | incoming_stream.total_out, incoming_stream.total_in, | 65 | (unsigned long long)incoming_stream.total_out, |
66 | (unsigned long long)incoming_stream.total_in, | ||
65 | incoming_stream.total_out == 0 ? 0.0 : | 67 | incoming_stream.total_out == 0 ? 0.0 : |
66 | (double) incoming_stream.total_in / incoming_stream.total_out); | 68 | (double) incoming_stream.total_in / incoming_stream.total_out); |
67 | if (compress_init_recv_called == 1 && inflate_failed == 0) | 69 | if (compress_init_recv_called == 1 && inflate_failed == 0) |