Move flush_outbuf to the file in which it is used, and by doing so fix a
authorMatt Kraai <kraai@debian.org>
Wed, 8 Nov 2000 06:52:57 +0000 (06:52 -0000)
committerMatt Kraai <kraai@debian.org>
Wed, 8 Nov 2000 06:52:57 +0000 (06:52 -0000)
nasty error dealing with two different variables with the same name.

archival/gunzip.c
archival/gzip.c
gunzip.c
gzip.c

index 1ff3c40fb89d5488f6b258717752206a46c95a1c..70b25bdb073e549bb39e5c54d8222bb93afe25ce 100644 (file)
@@ -1176,21 +1176,6 @@ void clear_bufs(void)
        bytes_in = bytes_out = 0L;
 }
 
-/* ===========================================================================
- * Write the output buffer outbuf[0..outcnt-1] and update bytes_out.
- * (used for the compressed data only)
- */
-void flush_outbuf()
-{
-       if (outcnt == 0)
-               return;
-
-       if (!test_mode)
-               write_buf(ofd, (char *) outbuf, outcnt);
-       bytes_out += (ulg) outcnt;
-       outcnt = 0;
-}
-
 /* ======================================================================== */
 int gunzip_main(int argc, char **argv)
 {
index add94d0d7f30098ae3197312401d58e9278b5206..2e147b1ca2f0918206c09b91db7c034ceff7adfb 100644 (file)
@@ -3380,3 +3380,17 @@ unsigned size;
        isize += (ulg) len;
        return (int) len;
 }
+
+/* ===========================================================================
+ * Write the output buffer outbuf[0..outcnt-1] and update bytes_out.
+ * (used for the compressed data only)
+ */
+void flush_outbuf()
+{
+       if (outcnt == 0)
+               return;
+
+       write_buf(ofd, (char *) outbuf, outcnt);
+       bytes_out += (ulg) outcnt;
+       outcnt = 0;
+}
index 1ff3c40fb89d5488f6b258717752206a46c95a1c..70b25bdb073e549bb39e5c54d8222bb93afe25ce 100644 (file)
--- a/gunzip.c
+++ b/gunzip.c
@@ -1176,21 +1176,6 @@ void clear_bufs(void)
        bytes_in = bytes_out = 0L;
 }
 
-/* ===========================================================================
- * Write the output buffer outbuf[0..outcnt-1] and update bytes_out.
- * (used for the compressed data only)
- */
-void flush_outbuf()
-{
-       if (outcnt == 0)
-               return;
-
-       if (!test_mode)
-               write_buf(ofd, (char *) outbuf, outcnt);
-       bytes_out += (ulg) outcnt;
-       outcnt = 0;
-}
-
 /* ======================================================================== */
 int gunzip_main(int argc, char **argv)
 {
diff --git a/gzip.c b/gzip.c
index add94d0d7f30098ae3197312401d58e9278b5206..2e147b1ca2f0918206c09b91db7c034ceff7adfb 100644 (file)
--- a/gzip.c
+++ b/gzip.c
@@ -3380,3 +3380,17 @@ unsigned size;
        isize += (ulg) len;
        return (int) len;
 }
+
+/* ===========================================================================
+ * Write the output buffer outbuf[0..outcnt-1] and update bytes_out.
+ * (used for the compressed data only)
+ */
+void flush_outbuf()
+{
+       if (outcnt == 0)
+               return;
+
+       write_buf(ofd, (char *) outbuf, outcnt);
+       bytes_out += (ulg) outcnt;
+       outcnt = 0;
+}