]> andersk Git - openssh.git/blobdiff - compress.c
- deraadt@cvs.openbsd.org 2001/03/02 09:42:49
[openssh.git] / compress.c
index 3c05886e10a804acfd0a74bfee6b87fada94137f..e8539baf0064406d05b122d90a838f7a890167c4 100644 (file)
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: compress.c,v 1.10 2000/12/19 23:17:56 markus Exp $");
+RCSID("$OpenBSD: compress.c,v 1.13 2001/02/08 19:30:51 itojun Exp $");
 
-#include "ssh.h"
+#include "log.h"
 #include "buffer.h"
 #include "zlib.h"
+#include "compress.h"
 
 static z_stream incoming_stream;
 static z_stream outgoing_stream;
@@ -39,7 +40,7 @@ buffer_compress_init(int level)
 /* Frees any data structures allocated for compression. */
 
 void
-buffer_compress_uninit()
+buffer_compress_uninit(void)
 {
        debug("compress outgoing: raw data %lu, compressed %lu, factor %.2f",
              outgoing_stream.total_in, outgoing_stream.total_out,
This page took 0.051838 seconds and 4 git commands to generate.