]> andersk Git - openssh.git/blobdiff - compress.c
- stevesk@cvs.openbsd.org 2001/12/29 21:56:01
[openssh.git] / compress.c
index 73aebe89a62ba3c6c14ce77dece9746b1c158c29..3badbf452da28c21c6f8f33a29c0b1f6d63b8bd8 100644 (file)
@@ -12,7 +12,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: compress.c,v 1.16 2001/12/19 07:18:56 deraadt Exp $");
+RCSID("$OpenBSD: compress.c,v 1.17 2001/12/29 21:56:01 stevesk Exp $");
 
 #include "log.h"
 #include "buffer.h"
@@ -80,7 +80,7 @@ buffer_compress_uninit(void)
 void
 buffer_compress(Buffer * input_buffer, Buffer * output_buffer)
 {
-       char buf[4096];
+       u_char buf[4096];
        int status;
 
        /* This case is not handled below. */
@@ -88,13 +88,13 @@ buffer_compress(Buffer * input_buffer, Buffer * output_buffer)
                return;
 
        /* Input is the contents of the input buffer. */
-       outgoing_stream.next_in = (u_char *) buffer_ptr(input_buffer);
+       outgoing_stream.next_in = buffer_ptr(input_buffer);
        outgoing_stream.avail_in = buffer_len(input_buffer);
 
        /* Loop compressing until deflate() returns with avail_out != 0. */
        do {
                /* Set up fixed-size output buffer. */
-               outgoing_stream.next_out = (u_char *)buf;
+               outgoing_stream.next_out = buf;
                outgoing_stream.avail_out = sizeof(buf);
 
                /* Compress as much data into the buffer as possible. */
@@ -124,15 +124,15 @@ buffer_compress(Buffer * input_buffer, Buffer * output_buffer)
 void
 buffer_uncompress(Buffer * input_buffer, Buffer * output_buffer)
 {
-       char buf[4096];
+       u_char buf[4096];
        int status;
 
-       incoming_stream.next_in = (u_char *) buffer_ptr(input_buffer);
+       incoming_stream.next_in = buffer_ptr(input_buffer);
        incoming_stream.avail_in = buffer_len(input_buffer);
 
        for (;;) {
                /* Set up fixed-size output buffer. */
-               incoming_stream.next_out = (u_char *) buf;
+               incoming_stream.next_out = buf;
                incoming_stream.avail_out = sizeof(buf);
 
                status = inflate(&incoming_stream, Z_PARTIAL_FLUSH);
This page took 0.033512 seconds and 4 git commands to generate.