diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2005-01-13 20:22:56 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2005-01-13 20:22:56 +0000 |
commit | 158909fad0b4c40cd84724c6054f2af00552cf3f (patch) | |
tree | d4f8cc435f0797ddbbb7b51b21fd875d94c86d7f /usr.bin/cvs | |
parent | 8f18e8c3b031957a5ed3b9b8f90d0ee409a9c675 (diff) |
tidy and remove debugging output
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/zlib.c | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/usr.bin/cvs/zlib.c b/usr.bin/cvs/zlib.c index 382a455d34e..0f083ea8fd0 100644 --- a/usr.bin/cvs/zlib.c +++ b/usr.bin/cvs/zlib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: zlib.c,v 1.1 2005/01/13 18:59:03 jfb Exp $ */ +/* $OpenBSD: zlib.c,v 1.2 2005/01/13 20:22:55 jfb Exp $ */ /* * Copyright (c) 2005 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -26,21 +26,15 @@ #include <sys/param.h> -#include <errno.h> -#include <stdio.h> #include <stdlib.h> -#include <unistd.h> #include <string.h> #include "log.h" #include "cvs.h" #include "zlib.h" - #define CVS_ZLIB_BUFSIZE 1024 - - struct cvs_zlib_ctx { int z_level; z_stream z_instrm; @@ -111,6 +105,9 @@ cvs_zlib_free(CVSZCTX *ctx) /* * cvs_zlib_inflate() * + * Decompress the first <slen> bytes of <src> using the zlib context <ctx> and + * store the resulting data in <dst>. + * Returns the number of bytes inflated on success, or -1 on failure. */ int cvs_zlib_inflate(CVSZCTX *ctx, BUF *dst, u_char *src, size_t slen) @@ -141,12 +138,9 @@ cvs_zlib_inflate(CVSZCTX *ctx, BUF *dst, u_char *src, size_t slen) } while (ret != Z_STREAM_END); - cvs_log(LP_WARN, "%u bytes decompressed to %d bytes", slen, bytes); - return (bytes); } - /* * cvs_zlib_deflate() * @@ -172,9 +166,6 @@ cvs_zlib_deflate(CVSZCTX *ctx, BUF *dst, u_char *src, size_t slen) ctx->z_destrm.avail_out = sizeof(buf); ret = deflate(&(ctx->z_destrm), Z_FINISH); if ((ret == Z_STREAM_ERROR) || (ret == Z_BUF_ERROR)) { -#if 0 - if (ret != Z_OK) { -#endif cvs_log(LP_ERR, "deflate error: %s", ctx->z_destrm.msg); return (-1); } @@ -185,7 +176,5 @@ cvs_zlib_deflate(CVSZCTX *ctx, BUF *dst, u_char *src, size_t slen) bytes += sizeof(buf) - ctx->z_destrm.avail_out; } while (ret != Z_STREAM_END); - cvs_log(LP_WARN, "%u bytes compressed to %d bytes", slen, bytes); - return (bytes); } |