Module Name: src
Committed By: wiz
Date: Sun Oct 25 20:14:50 UTC 2009
Modified Files:
src/usr.bin/unzip: unzip.c
Log Message:
Match directory extraction output with Infozip.
To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/usr.bin/unzip/unzip.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.bin/unzip/unzip.c
diff -u src/usr.bin/unzip/unzip.c:1.9 src/usr.bin/unzip/unzip.c:1.10
--- src/usr.bin/unzip/unzip.c:1.9 Wed Sep 30 10:04:54 2009
+++ src/usr.bin/unzip/unzip.c Sun Oct 25 20:14:50 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: unzip.c,v 1.9 2009/09/30 10:04:54 wiz Exp $ */
+/* $NetBSD: unzip.c,v 1.10 2009/10/25 20:14:50 wiz Exp $ */
/*-
* Copyright (c) 2009 Joerg Sonnenberger <[email protected]>
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: unzip.c,v 1.9 2009/09/30 10:04:54 wiz Exp $");
+__RCSID("$NetBSD: unzip.c,v 1.10 2009/10/25 20:14:50 wiz Exp $");
#include <sys/queue.h>
#include <sys/stat.h>
@@ -408,7 +408,7 @@
if (mode & 0004)
mode |= 0001;
- info("d %s\n", path);
+ info(" creating: %s/\n", path);
make_dir(path, mode);
ac(archive_read_data_skip(a));
}