diff options
author | 2001-12-19 07:18:56 +0000 | |
---|---|---|
committer | 2001-12-19 07:18:56 +0000 | |
commit | 660b1623ac34469dd86eaf69a3bccd2a8642bb90 (patch) | |
tree | 5ba7846ddd7874585d9bc2e7332ee4b225377280 /usr.bin/ssh/compress.c | |
parent | Introduce brdtyp and change what cputyp means. (diff) | |
download | wireguard-openbsd-660b1623ac34469dd86eaf69a3bccd2a8642bb90.tar.xz wireguard-openbsd-660b1623ac34469dd86eaf69a3bccd2a8642bb90.zip |
basic KNF done while i was looking for something else
Diffstat (limited to 'usr.bin/ssh/compress.c')
-rw-r--r-- | usr.bin/ssh/compress.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/ssh/compress.c b/usr.bin/ssh/compress.c index a779af6d7b3..73aebe89a62 100644 --- a/usr.bin/ssh/compress.c +++ b/usr.bin/ssh/compress.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: compress.c,v 1.15 2001/09/27 11:58:16 markus Exp $"); +RCSID("$OpenBSD: compress.c,v 1.16 2001/12/19 07:18:56 deraadt Exp $"); #include "log.h" #include "buffer.h" @@ -55,13 +55,13 @@ void buffer_compress_uninit(void) { debug("compress outgoing: raw data %lu, compressed %lu, factor %.2f", - outgoing_stream.total_in, outgoing_stream.total_out, - outgoing_stream.total_in == 0 ? 0.0 : - (double) outgoing_stream.total_out / outgoing_stream.total_in); + outgoing_stream.total_in, outgoing_stream.total_out, + outgoing_stream.total_in == 0 ? 0.0 : + (double) outgoing_stream.total_out / outgoing_stream.total_in); debug("compress incoming: raw data %lu, compressed %lu, factor %.2f", - incoming_stream.total_out, incoming_stream.total_in, - incoming_stream.total_out == 0 ? 0.0 : - (double) incoming_stream.total_in / incoming_stream.total_out); + incoming_stream.total_out, incoming_stream.total_in, + incoming_stream.total_out == 0 ? 0.0 : + (double) incoming_stream.total_in / incoming_stream.total_out); if (compress_init_recv_called == 1) inflateEnd(&incoming_stream); if (compress_init_send_called == 1) |