summaryrefslogtreecommitdiff
path: root/zip.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2010-02-03 08:53:02 +0100
committerJim Meyering <meyering@redhat.com>2010-02-03 08:53:02 +0100
commit3ea7fe86ac3c1a887038e0e3e1c07ba4634ad1a5 (patch)
tree724c373678f99a6b2a797f0879804b6125c65883 /zip.c
parent2bea18bc85c6815e742dd3aa287d8f7aa2f0bb74 (diff)
downloadgzip-3ea7fe86ac3c1a887038e0e3e1c07ba4634ad1a5.tar.gz
global: convert indentation-TABs to spaces
Transformed via this shell code: t=$'\t' git ls-files \ | grep -vE '(^|/)((GNU)?[Mm]akefile|ChangeLog)|\.(am|mk)$' \ | grep -vE 'tests/pr/|help2man' \ | xargs grep -lE "^ *$t" \ | xargs perl -MText::Tabs -ni -le \ '$m=/^( *\t[ \t]*)(.*)/; print $m ? expand($1) . $2 : $_'
Diffstat (limited to 'zip.c')
-rw-r--r--zip.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/zip.c b/zip.c
index 756c8fd..a30a561 100644
--- a/zip.c
+++ b/zip.c
@@ -55,12 +55,12 @@ int zip(in, out)
put_byte(DEFLATED); /* compression method */
if (save_orig_name) {
- flags |= ORIG_NAME;
+ flags |= ORIG_NAME;
}
put_byte(flags); /* general flags */
stamp = (0 <= time_stamp.tv_sec && time_stamp.tv_sec <= 0xffffffff
- ? (ulg) time_stamp.tv_sec
- : (ulg) 0);
+ ? (ulg) time_stamp.tv_sec
+ : (ulg) 0);
put_long (stamp);
/* Write deflated file to zip file */
@@ -74,10 +74,10 @@ int zip(in, out)
put_byte(OS_CODE); /* OS identifier */
if (save_orig_name) {
- char *p = gzip_base_name (ifname); /* Don't save the directory part. */
- do {
- put_char(*p);
- } while (*p++);
+ char *p = gzip_base_name (ifname); /* Don't save the directory part. */
+ do {
+ put_char(*p);
+ } while (*p++);
}
header_bytes = (off_t)outcnt;
@@ -88,8 +88,8 @@ int zip(in, out)
* and not on MSDOS -- diet in TSR mode reports an incorrect file size)
*/
if (ifile_size != -1L && bytes_in != ifile_size) {
- fprintf(stderr, "%s: %s: file size changed while zipping\n",
- program_name, ifname);
+ fprintf(stderr, "%s: %s: file size changed while zipping\n",
+ program_name, ifname);
}
#endif
@@ -119,8 +119,8 @@ int file_read(buf, size)
len = read_buffer (ifd, buf, size);
if (len == 0) return (int)len;
if (len == (unsigned)-1) {
- read_error();
- return EOF;
+ read_error();
+ return EOF;
}
crc = updcrc((uch*)buf, len);