aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archival/gunzip.c3
1 files changed, 3 insertions, 0 deletions
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)
169 magic2 = xread_char(src_fd); 169 magic2 = xread_char(src_fd);
170#ifdef CONFIG_FEATURE_UNCOMPRESS 170#ifdef CONFIG_FEATURE_UNCOMPRESS
171 if (magic2 == 0x9d) { 171 if (magic2 == 0x9d) {
172 printf("uncompress\n");
172 return(uncompress(src_fd, dst_fd)); 173 return(uncompress(src_fd, dst_fd));
173 } else 174 } else
174#endif 175#endif
@@ -182,6 +183,8 @@ extern int gunzip_main(int argc, char **argv)
182 } else { 183 } else {
183 error_msg_and_die("Invalid magic\n"); 184 error_msg_and_die("Invalid magic\n");
184 } 185 }
186 } else {
187 error_msg_and_die("Invalid magic\n");
185 } 188 }
186 189
187 if ((status != EXIT_SUCCESS) && (new_path)) { 190 if ((status != EXIT_SUCCESS) && (new_path)) {