diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2015-02-16 16:38:55 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2015-02-16 16:38:55 +0000 |
commit | 019062b67a14498a839a7f58e3e283447bc2657f (patch) | |
tree | c91bdd4279d3f2e9ce2011c9063cf5f8e72f8a0f /share/man/man9 | |
parent | be81257f1e5b86a0cafa3dc2c9293b19235abe06 (diff) |
Replace \*(Lt \*(Le \*(Gt \*(Ge with literal < <= > >= respectively,
except for instances where \*(Le and \*(Ge are clearly understood as
mathematical symbols. Discussed with schwarze@
Diffstat (limited to 'share/man/man9')
-rw-r--r-- | share/man/man9/mbuf.9 | 6 | ||||
-rw-r--r-- | share/man/man9/rssadapt.9 | 8 | ||||
-rw-r--r-- | share/man/man9/socreate.9 | 8 |
3 files changed, 11 insertions, 11 deletions
diff --git a/share/man/man9/mbuf.9 b/share/man/man9/mbuf.9 index 30dda56d418..c4fc3243b66 100644 --- a/share/man/man9/mbuf.9 +++ b/share/man/man9/mbuf.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mbuf.9,v 1.83 2015/02/10 04:08:00 lteo Exp $ +.\" $OpenBSD: mbuf.9,v 1.84 2015/02/16 16:38:54 naddy Exp $ .\" .\" Copyright (c) 2001 Jean-Jacques Bernard-Gundol <jjbg@openbsd.org> .\" All rights reserved. @@ -25,7 +25,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: February 10 2015 $ +.Dd $Mdocdate: February 16 2015 $ .Dt MBUF 9 .Os .Sh NAME @@ -174,7 +174,7 @@ #define MCLBYTES (1 << MCLSHIFT) #define MCLOFSET (MCLBYTES - 1) -#define mtod(m,t) ((t)((m)-\*(Gtm_data)) +#define mtod(m,t) ((t)((m)->m_data)) struct m_hdr { struct mbuf *mh_next; diff --git a/share/man/man9/rssadapt.9 b/share/man/man9/rssadapt.9 index 0cd583cd04a..db928597cda 100644 --- a/share/man/man9/rssadapt.9 +++ b/share/man/man9/rssadapt.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: rssadapt.9,v 1.7 2013/08/12 14:19:53 jmc Exp $ +.\" $OpenBSD: rssadapt.9,v 1.8 2015/02/16 16:38:54 naddy Exp $ .\" $NetBSD: rssadapt.9,v 1.4 2004/12/08 18:35:56 peter Exp $ .\" .\" Copyright (c) 2004 David Young. All rights reserved. @@ -31,7 +31,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: August 12 2013 $ +.Dd $Mdocdate: February 16 2015 $ .Dt RSSADAPT 9 .Os .Sh NAME @@ -105,7 +105,7 @@ state object belonging to the node which is the packet destination. However, if the destination is a broadcast/multicast address, then .Fa ra belongs to the BSS node, -.Va ic-\*(Gtic_bss . +.Va ic->ic_bss . .It Fa rs A list of eligible data rates for the node; for example, the rates negotiated when the node associated with the network. @@ -299,7 +299,7 @@ is the exponential-average RSS at the time the packet was transmitted. .Fa id_rateidx is an index into the destination neighbor's rate-set, -.Fa id_node-\*(Gtni_rates , +.Fa id_node->ni_rates , indicating the transmit data rate for the packet. .Pp .Vt ieee80211_rssadapt diff --git a/share/man/man9/socreate.9 b/share/man/man9/socreate.9 index 8ae52d2e2a1..7a3604f639d 100644 --- a/share/man/man9/socreate.9 +++ b/share/man/man9/socreate.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: socreate.9,v 1.2 2009/01/29 17:57:18 jmc Exp $ +.\" $OpenBSD: socreate.9,v 1.3 2015/02/16 16:38:54 naddy Exp $ .\" .\" Copyright (c) 2006 Robert N. M. Watson .\" All rights reserved. @@ -26,7 +26,7 @@ .\" .\" $FreeBSD: src/share/man/man9/socket.9,v 1.2 2006/12/16 10:32:10 rwatson Exp $ .\" -.Dd $Mdocdate: January 29 2009 $ +.Dd $Mdocdate: February 16 2015 $ .Dt SOCREATE 9 .Os .Sh NAME @@ -135,11 +135,11 @@ Unlike the user system call, returns immediately; the caller may .Xr tsleep 9 on -.Fa so-\*(Gtso_timeo +.Fa so->so_timeo and wait for the .Dv SS_ISCONNECTING flag to clear or -.Fa so-\*(Gtso_error +.Fa so->so_error to become non-zero. If .Fn soconnect |