Skip to content

Commit

Permalink
lib: gzip: lower the message when parse header
Browse files Browse the repository at this point in the history
Change-Id: Iedd2cbefac99fb17256770dc334741b9e760c449
Signed-off-by: Joseph Chen <[email protected]>
  • Loading branch information
JosephChen2017 committed Oct 7, 2018
1 parent d6ceaaf commit bcf5a32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/gunzip.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ int gzip_parse_header(const unsigned char *src, unsigned long len)
i = 10;
flags = src[3];
if (src[2] != DEFLATED || (flags & RESERVED) != 0) {
puts ("Error: Bad gzipped data\n");
debug("Error: Bad gzipped data\n");
return (-1);
}
if ((flags & EXTRA_FIELD) != 0)
Expand Down

0 comments on commit bcf5a32

Please sign in to comment.