Fix typos.

This commit is contained in:
wiz 2009-08-23 15:50:35 +00:00
parent ea72fa6ee9
commit f3d0c4e780
2 changed files with 5 additions and 5 deletions

View File

@ -25,7 +25,7 @@
.\" SUCH DAMAGE. .\" SUCH DAMAGE.
.\" .\"
.\" $FreeBSD: revision 180125$ .\" $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 .Dd August 22, 2009
.Dt UNZIP 1 .Dt UNZIP 1
@ -96,7 +96,7 @@ Otherwise, the file is silently skipped.
List verbosely, rather than extract, the contents of the zipfile. List verbosely, rather than extract, the contents of the zipfile.
This differs from This differs from
.Fl l .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 Note that most of the data is currently fake and does not reflect the
content of the archive. content of the archive.
.It Fl x Ar pattern .It Fl x Ar pattern

View File

@ -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 <joerg@NetBSD.org> * Copyright (c) 2009 Joerg Sonnenberger <joerg@NetBSD.org>
@ -37,7 +37,7 @@
*/ */
#include <sys/cdefs.h> #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/queue.h>
#include <sys/stat.h> #include <sys/stat.h>
@ -57,7 +57,7 @@ __RCSID("$NetBSD: unzip.c,v 1.3 2009/08/22 17:19:11 joerg Exp $");
/* command-line options */ /* command-line options */
static int a_opt; /* convert EOL */ 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 const char *d_arg; /* directory */
static int f_opt; /* update existing files only */ static int f_opt; /* update existing files only */
static int j_opt; /* junk directories */ static int j_opt; /* junk directories */