Module Name: src Committed By: wiz Date: Sun Aug 23 15:50:35 UTC 2009
Modified Files: src/usr.bin/unzip: unzip.1 unzip.c Log Message: Fix typos. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/usr.bin/unzip/unzip.1 cvs rdiff -u -r1.3 -r1.4 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.1 diff -u src/usr.bin/unzip/unzip.1:1.4 src/usr.bin/unzip/unzip.1:1.5 --- src/usr.bin/unzip/unzip.1:1.4 Sat Aug 22 17:19:11 2009 +++ src/usr.bin/unzip/unzip.1 Sun Aug 23 15:50:35 2009 @@ -25,7 +25,7 @@ .\" SUCH DAMAGE. .\" .\" $FreeBSD: revision 180125$ -.\" $NetBSD: unzip.1,v 1.4 2009/08/22 17:19:11 joerg Exp $ +.\" $NetBSD: unzip.1,v 1.5 2009/08/23 15:50:35 wiz Exp $ .\" .Dd August 22, 2009 .Dt UNZIP 1 @@ -96,7 +96,7 @@ List verbosely, rather than extract, the contents of the zipfile. This differs from .Fl l -by using the long listening. +by using the long listing. Note that most of the data is currently fake and does not reflect the content of the archive. .It Fl x Ar pattern Index: src/usr.bin/unzip/unzip.c diff -u src/usr.bin/unzip/unzip.c:1.3 src/usr.bin/unzip/unzip.c:1.4 --- src/usr.bin/unzip/unzip.c:1.3 Sat Aug 22 17:19:11 2009 +++ src/usr.bin/unzip/unzip.c Sun Aug 23 15:50:35 2009 @@ -1,4 +1,4 @@ -/* $NetBSD: unzip.c,v 1.3 2009/08/22 17:19:11 joerg Exp $ */ +/* $NetBSD: unzip.c,v 1.4 2009/08/23 15:50:35 wiz Exp $ */ /*- * Copyright (c) 2009 Joerg Sonnenberger <jo...@netbsd.org> @@ -37,7 +37,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: unzip.c,v 1.3 2009/08/22 17:19:11 joerg Exp $"); +__RCSID("$NetBSD: unzip.c,v 1.4 2009/08/23 15:50:35 wiz Exp $"); #include <sys/queue.h> #include <sys/stat.h> @@ -57,7 +57,7 @@ /* command-line options */ static int a_opt; /* convert EOL */ -static int c_opt; /* extract to stoud */ +static int c_opt; /* extract to stdout */ static const char *d_arg; /* directory */ static int f_opt; /* update existing files only */ static int j_opt; /* junk directories */