svn commit: trunk/busybox/archival

landley at busybox.net landley at busybox.net
Fri Aug 4 20:15:18 UTC 2006


Author: landley
Date: 2006-08-04 13:15:18 -0700 (Fri, 04 Aug 2006)
New Revision: 15777

Log:
Typo.


Modified:
   trunk/busybox/archival/unzip.c


Changeset:
Modified: trunk/busybox/archival/unzip.c
===================================================================
--- trunk/busybox/archival/unzip.c	2006-08-04 19:16:31 UTC (rev 15776)
+++ trunk/busybox/archival/unzip.c	2006-08-04 20:15:18 UTC (rev 15777)
@@ -333,7 +333,7 @@
 			overwrite = o_always;
 		case 'y': /* Open file and fall into unzip */
 			unzip_create_leading_dirs(dst_fn);
-			dst_fd = xopen(dst_fn, O_WRONLY | O_CREAT, 777);
+			dst_fd = xopen3(dst_fn, O_WRONLY | O_CREAT, 777);
 		case -1: /* Unzip */
 			if (verbosity == v_normal) {
 				printf("  inflating: %s\n", dst_fn);




More information about the busybox-cvs mailing list