summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorRay Lai <ray@cvs.openbsd.org>2007-05-27 03:35:12 +0000
committerRay Lai <ray@cvs.openbsd.org>2007-05-27 03:35:12 +0000
commit311951282a15eb0fe5d2652882140daadf016691 (patch)
tree5681e01e41629e53d5671a5463b25b9a1ab20e52 /usr.bin
parented231d4ce45c6dbd5b1506dcbd9c85d1cb521ce0 (diff)
Mention -x flag (for compatibility only). From Tobias Stoeckmann.
Input and OK jmc@
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/cvs/cvs.16
-rw-r--r--usr.bin/cvs/cvs.c4
2 files changed, 6 insertions, 4 deletions
diff --git a/usr.bin/cvs/cvs.1 b/usr.bin/cvs/cvs.1
index 721ec137f18..3e588174449 100644
--- a/usr.bin/cvs/cvs.1
+++ b/usr.bin/cvs/cvs.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: cvs.1,v 1.110 2007/05/22 16:47:22 xsa Exp $
+.\" $OpenBSD: cvs.1,v 1.111 2007/05/27 03:35:11 ray Exp $
.\"
.\" Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
.\" Copyright (c) 2004-2007 Xavier Santolaria <xsa@openbsd.org>
@@ -33,7 +33,7 @@
.Sh SYNOPSIS
.Nm
.Bk -words
-.Op Fl flnQqRrtVvw
+.Op Fl flnQqRrtVvwx
.Op Fl d Ar root
.Op Fl e Ar editor
.Xo
@@ -146,6 +146,8 @@ This is the default unless
is set or the
.Fl r
option is specified.
+.It Fl x
+This flag is for compatibility only.
.It Fl z Ar level
Specify the compression level to
.Xr gzip 1
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c
index e73544d5f15..02edf92923e 100644
--- a/usr.bin/cvs/cvs.c
+++ b/usr.bin/cvs/cvs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cvs.c,v 1.125 2007/05/27 00:46:31 ray Exp $ */
+/* $OpenBSD: cvs.c,v 1.126 2007/05/27 03:35:11 ray Exp $ */
/*
* Copyright (c) 2006, 2007 Joris Vink <joris@openbsd.org>
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
@@ -118,7 +118,7 @@ __dead void
usage(void)
{
(void)fprintf(stderr,
- "usage: %s [-flnQqRrtVvw] [-d root] [-e editor] [-s var=val]\n"
+ "usage: %s [-flnQqRrtVvwx] [-d root] [-e editor] [-s var=val]\n"
" [-T tmpdir] [-z level] command [...]\n", __progname);
exit(1);
}