diff options
author | Rob Landley <rob@landley.net> | 2006-08-04 20:15:18 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-08-04 20:15:18 +0000 |
commit | 3629d95a24ce0b66ef455aaaf834d989d65234a5 (patch) | |
tree | baf9739c0ccdd3208b1aaaf6fa1a281356aa2209 | |
parent | 27d07c9ce2f07cf85116455e356ba6c4b57f86fe (diff) | |
download | busybox-w32-3629d95a24ce0b66ef455aaaf834d989d65234a5.tar.gz busybox-w32-3629d95a24ce0b66ef455aaaf834d989d65234a5.tar.bz2 busybox-w32-3629d95a24ce0b66ef455aaaf834d989d65234a5.zip |
Typo.
-rw-r--r-- | archival/unzip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archival/unzip.c b/archival/unzip.c index 2585cbf3f..96923448a 100644 --- a/archival/unzip.c +++ b/archival/unzip.c | |||
@@ -333,7 +333,7 @@ int unzip_main(int argc, char **argv) | |||
333 | overwrite = o_always; | 333 | overwrite = o_always; |
334 | case 'y': /* Open file and fall into unzip */ | 334 | case 'y': /* Open file and fall into unzip */ |
335 | unzip_create_leading_dirs(dst_fn); | 335 | unzip_create_leading_dirs(dst_fn); |
336 | dst_fd = xopen(dst_fn, O_WRONLY | O_CREAT, 777); | 336 | dst_fd = xopen3(dst_fn, O_WRONLY | O_CREAT, 777); |
337 | case -1: /* Unzip */ | 337 | case -1: /* Unzip */ |
338 | if (verbosity == v_normal) { | 338 | if (verbosity == v_normal) { |
339 | printf(" inflating: %s\n", dst_fn); | 339 | printf(" inflating: %s\n", dst_fn); |