diff options
author | 2007-05-27 03:35:11 +0000 | |
---|---|---|
committer | 2007-05-27 03:35:11 +0000 | |
commit | 4b4fc6a83c4a13f34d709e09875038c93a468ebb (patch) | |
tree | 39e258350b82606ea6aceb9c1242731d9678c99d | |
parent | Prevent buf[-1] access if strlen(buf) == 0. (diff) | |
download | wireguard-openbsd-4b4fc6a83c4a13f34d709e09875038c93a468ebb.tar.xz wireguard-openbsd-4b4fc6a83c4a13f34d709e09875038c93a468ebb.zip |
Mention -x flag (for compatibility only). From Tobias Stoeckmann.
Input and OK jmc@
-rw-r--r-- | usr.bin/cvs/cvs.1 | 6 | ||||
-rw-r--r-- | usr.bin/cvs/cvs.c | 4 |
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); } |