summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjmatthew <jmatthew@openbsd.org>2016-06-27 23:38:01 +0000
committerjmatthew <jmatthew@openbsd.org>2016-06-27 23:38:01 +0000
commit63ddc3d814b68e0a34f4a36e597488d6d0ac319f (patch)
treee420851d4db449448860bd437f4db61cead9cf7f
parentMissing "break;" in switch statement; repairs IP_MINTTL. (diff)
downloadwireguard-openbsd-63ddc3d814b68e0a34f4a36e597488d6d0ac319f.tar.xz
wireguard-openbsd-63ddc3d814b68e0a34f4a36e597488d6d0ac319f.zip
the flag is USBD_EXCLUSIVE_USE, not USBD_EXCLUSIVE_ACCESS
-rw-r--r--share/man/man9/usbd_open_pipe.98
1 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man9/usbd_open_pipe.9 b/share/man/man9/usbd_open_pipe.9
index 0a7e922f0da..56735c5b9e7 100644
--- a/share/man/man9/usbd_open_pipe.9
+++ b/share/man/man9/usbd_open_pipe.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: usbd_open_pipe.9,v 1.3 2015/05/04 14:36:26 jmc Exp $
+.\" $OpenBSD: usbd_open_pipe.9,v 1.4 2016/06/27 23:38:01 jmatthew Exp $
.\"
.\" Copyright (c) 2015 Sean Levy <attila@stalphonsos.com>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: May 4 2015 $
+.Dd $Mdocdate: June 27 2016 $
.Dt USBD_OPEN_PIPE 9
.Os
.Sh NAME
@@ -51,7 +51,7 @@ connected.
A bitmask of flags.
Currently there is only one flag bit defined:
.Bl -tag -width xxx -offset indent
-.It Dv USBD_EXCLUSIVE_ACCESS
+.It Dv USBD_EXCLUSIVE_USE
Do not allow other pipes to use this endpoint while this pipe exists.
.El
.It Fa pipe
@@ -77,7 +77,7 @@ passed to
Instead,
.Fn usbd_open_pipe_intr
implicitly turns on the
-.Dv USBD_EXCLUSIVE_ACCESS
+.Dv USBD_EXCLUSIVE_USE
bit for the pipe, disallowing multiple interrupt pipes for
the same endpoint.
The