diff options
Diffstat (limited to 'archival/unzip.c')
-rw-r--r-- | archival/unzip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/unzip.c b/archival/unzip.c index 1c03a4c47..570789427 100644 --- a/archival/unzip.c +++ b/archival/unzip.c | |||
@@ -112,7 +112,7 @@ int unzip_main(int argc, char **argv) | |||
112 | char key_buf[512]; | 112 | char key_buf[512]; |
113 | struct stat stat_buf; | 113 | struct stat stat_buf; |
114 | 114 | ||
115 | while((opt = getopt(argc, argv, "-d:lnopqx")) != -1) { | 115 | while ((opt = getopt(argc, argv, "-d:lnopqx")) != -1) { |
116 | switch (opt_range) { | 116 | switch (opt_range) { |
117 | case 0: /* Options */ | 117 | case 0: /* Options */ |
118 | switch (opt) { | 118 | switch (opt) { |
@@ -192,7 +192,7 @@ int unzip_main(int argc, char **argv) | |||
192 | } else { | 192 | } else { |
193 | static const char *const extn[] = {"", ".zip", ".ZIP"}; | 193 | static const char *const extn[] = {"", ".zip", ".ZIP"}; |
194 | int orig_src_fn_len = strlen(src_fn); | 194 | int orig_src_fn_len = strlen(src_fn); |
195 | for(i = 0; (i < 3) && (src_fd == -1); i++) { | 195 | for (i = 0; (i < 3) && (src_fd == -1); i++) { |
196 | strcpy(src_fn + orig_src_fn_len, extn[i]); | 196 | strcpy(src_fn + orig_src_fn_len, extn[i]); |
197 | src_fd = open(src_fn, O_RDONLY); | 197 | src_fd = open(src_fn, O_RDONLY); |
198 | } | 198 | } |