diff options
author | Matt Kraai | 2000-11-08 06:52:57 +0000 |
---|---|---|
committer | Matt Kraai | 2000-11-08 06:52:57 +0000 |
commit | 7918e1fd549adbcf1df30f73914104436504d5e5 (patch) | |
tree | 2e6db6a2924c6cf805c0ccd0f827c8bf35b21ee9 /archival/gzip.c | |
parent | d8ad76cb31ff7c4b2d97cc66eafc4297f5cea7d7 (diff) | |
download | busybox-7918e1fd549adbcf1df30f73914104436504d5e5.zip busybox-7918e1fd549adbcf1df30f73914104436504d5e5.tar.gz |
Move flush_outbuf to the file in which it is used, and by doing so fix a
nasty error dealing with two different variables with the same name.
Diffstat (limited to 'archival/gzip.c')
-rw-r--r-- | archival/gzip.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/archival/gzip.c b/archival/gzip.c index add94d0..2e147b1 100644 --- a/archival/gzip.c +++ b/archival/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; +} |