aboutsummaryrefslogtreecommitdiff
path: root/archival/gunzip.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-03-15 08:29:22 +0000
committerEric Andersen <andersen@codepoet.org>2004-03-15 08:29:22 +0000
commitc7bda1ce659294d6e22c06e087f6f265983c7578 (patch)
tree4c6d2217f4d8306c59cf1096f8664e1cfd167213 /archival/gunzip.c
parent8854004b41065b3d081af7f3df13a100b0c8bfbe (diff)
downloadbusybox-w32-c7bda1ce659294d6e22c06e087f6f265983c7578.tar.gz
busybox-w32-c7bda1ce659294d6e22c06e087f6f265983c7578.tar.bz2
busybox-w32-c7bda1ce659294d6e22c06e087f6f265983c7578.zip
Remove trailing whitespace. Update copyright to include 2004.
Diffstat (limited to 'archival/gunzip.c')
-rw-r--r--archival/gunzip.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/archival/gunzip.c b/archival/gunzip.c
index 367e0470c..dec53f660 100644
--- a/archival/gunzip.c
+++ b/archival/gunzip.c
@@ -13,7 +13,7 @@
13 * 13 *
14 * General cleanup to better adhere to the style guide and make use of standard 14 * General cleanup to better adhere to the style guide and make use of standard
15 * busybox functions by Glenn McGrath <bug1@optushome.com.au> 15 * busybox functions by Glenn McGrath <bug1@optushome.com.au>
16 * 16 *
17 * This program is free software; you can redistribute it and/or modify 17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by 18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or 19 * the Free Software Foundation; either version 2 of the License, or
@@ -153,12 +153,12 @@ extern int gunzip_main(int argc, char **argv)
153 /* do the decompression, and cleanup */ 153 /* do the decompression, and cleanup */
154 if (bb_xread_char(src_fd) == 0x1f) { 154 if (bb_xread_char(src_fd) == 0x1f) {
155 unsigned char magic2; 155 unsigned char magic2;
156 156
157 magic2 = bb_xread_char(src_fd); 157 magic2 = bb_xread_char(src_fd);
158#ifdef CONFIG_FEATURE_GUNZIP_UNCOMPRESS 158#ifdef CONFIG_FEATURE_GUNZIP_UNCOMPRESS
159 if (magic2 == 0x9d) { 159 if (magic2 == 0x9d) {
160 status = uncompress(src_fd, dst_fd); 160 status = uncompress(src_fd, dst_fd);
161 } else 161 } else
162#endif 162#endif
163 if (magic2 == 0x8b) { 163 if (magic2 == 0x8b) {
164 check_header_gzip(src_fd); 164 check_header_gzip(src_fd);