aboutsummaryrefslogtreecommitdiff
path: root/archival/libunarchive/check_header_gzip.c
diff options
context:
space:
mode:
author"Robert P. J. Day" <rpjday@mindspring.com>2006-07-20 19:02:24 +0000
committer"Robert P. J. Day" <rpjday@mindspring.com>2006-07-20 19:02:24 +0000
commiteea561871b45a2335ab6a09f14dad627ffcdc1cd (patch)
tree7c45d6a5741adb652c047366dddf3a2e8ce62929 /archival/libunarchive/check_header_gzip.c
parentbf30c69a38a38561b4165549478a14efdbb95a53 (diff)
downloadbusybox-eea561871b45a2335ab6a09f14dad627ffcdc1cd.tar.gz
"formated" -> "formatted" throughout the code base.
Diffstat (limited to 'archival/libunarchive/check_header_gzip.c')
-rw-r--r--archival/libunarchive/check_header_gzip.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/archival/libunarchive/check_header_gzip.c b/archival/libunarchive/check_header_gzip.c
index 77e1e6a46..00d1919a7 100644
--- a/archival/libunarchive/check_header_gzip.c
+++ b/archival/libunarchive/check_header_gzip.c
@@ -17,18 +17,18 @@ void check_header_gzip(int src_fd)
unsigned int mtime;
unsigned char xtra_flags;
unsigned char os_flags;
- } formated;
+ } formatted;
} header;
xread(src_fd, header.raw, 8);
/* Check the compression method */
- if (header.formated.method != 8) {
+ if (header.formatted.method != 8) {
bb_error_msg_and_die("Unknown compression method %d",
- header.formated.method);
+ header.formatted.method);
}
- if (header.formated.flags & 0x04) {
+ if (header.formatted.flags & 0x04) {
/* bit 2 set: extra field present */
unsigned char extra_short;
@@ -41,19 +41,19 @@ void check_header_gzip(int src_fd)
}
/* Discard original name if any */
- if (header.formated.flags & 0x08) {
+ if (header.formatted.flags & 0x08) {
/* bit 3 set: original file name present */
while(xread_char(src_fd) != 0);
}
/* Discard file comment if any */
- if (header.formated.flags & 0x10) {
+ if (header.formatted.flags & 0x10) {
/* bit 4 set: file comment present */
while(xread_char(src_fd) != 0);
}
/* Read the header checksum */
- if (header.formated.flags & 0x02) {
+ if (header.formatted.flags & 0x02) {
xread_char(src_fd);
xread_char(src_fd);
}