summaryrefslogtreecommitdiff
path: root/usr.bin/cvs
diff options
context:
space:
mode:
authorIgor Sobrado <sobrado@cvs.openbsd.org>2007-08-06 19:16:08 +0000
committerIgor Sobrado <sobrado@cvs.openbsd.org>2007-08-06 19:16:08 +0000
commitd569c9b0c585d1ada0bb33679611b77eba528140 (patch)
treeaf2426db3e795320f587d155021169a3f1700b3e /usr.bin/cvs
parent602a7968e47e34fd38658741b7b66d3c9115f9cf (diff)
the ellipsis is not an optional argument; while here, sync the usage
and synopsis of commands lots of good ideas by jmc@ ok jmc@
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r--usr.bin/cvs/cvs.16
-rw-r--r--usr.bin/cvs/cvs.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/cvs/cvs.1 b/usr.bin/cvs/cvs.1
index ed36f248265..2660d4abe30 100644
--- a/usr.bin/cvs/cvs.1
+++ b/usr.bin/cvs/cvs.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: cvs.1,v 1.113 2007/05/31 19:20:09 jmc Exp $
+.\" $OpenBSD: cvs.1,v 1.114 2007/08/06 19:16:06 sobrado Exp $
.\"
.\" Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
.\" Copyright (c) 2004-2007 Xavier Santolaria <xsa@openbsd.org>
@@ -24,7 +24,7 @@
.\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
.\" ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd $Mdocdate: May 31 2007 $
+.Dd $Mdocdate: August 6 2007 $
.Dt CVS 1
.Os
.Sh NAME
@@ -42,7 +42,7 @@
.Xc
.Op Fl T Ar tmpdir
.Op Fl z Ar level
-.Ar command Op Ar ...
+.Ar command ...
.Ek
.Sh DESCRIPTION
The
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c
index 07189832b90..c80962dff28 100644
--- a/usr.bin/cvs/cvs.c
+++ b/usr.bin/cvs/cvs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cvs.c,v 1.128 2007/05/27 21:14:06 ray Exp $ */
+/* $OpenBSD: cvs.c,v 1.129 2007/08/06 19:16:06 sobrado Exp $ */
/*
* Copyright (c) 2006, 2007 Joris Vink <joris@openbsd.org>
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
@@ -119,7 +119,7 @@ usage(void)
{
(void)fprintf(stderr,
"usage: %s [-flnQqRrtVvw] [-d root] [-e editor] [-s var=val]\n"
- " [-T tmpdir] [-z level] command [...]\n", __progname);
+ " [-T tmpdir] [-z level] command ...\n", __progname);
exit(1);
}