From 563ac6e789a3fdf438121df9a965f53a254bfff0 Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Fri, 1 Nov 2002 21:40:52 +0000 Subject: Report errror if the first magic character doesnt match --- archival/gunzip.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'archival') diff --git a/archival/gunzip.c b/archival/gunzip.c index ca7e343cc..fff3a6577 100644 --- a/archival/gunzip.c +++ b/archival/gunzip.c @@ -169,6 +169,7 @@ extern int gunzip_main(int argc, char **argv) magic2 = xread_char(src_fd); #ifdef CONFIG_FEATURE_UNCOMPRESS if (magic2 == 0x9d) { + printf("uncompress\n"); return(uncompress(src_fd, dst_fd)); } else #endif @@ -182,6 +183,8 @@ extern int gunzip_main(int argc, char **argv) } else { error_msg_and_die("Invalid magic\n"); } + } else { + error_msg_and_die("Invalid magic\n"); } if ((status != EXIT_SUCCESS) && (new_path)) { -- cgit v1.2.3