Boring whitespace fixes.

This commit is contained in:
wiz 2001-09-16 02:23:09 +00:00
parent 5f0cf55919
commit e7560d5642
14 changed files with 53 additions and 53 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: byteorder.3,v 1.6 1999/03/22 19:44:49 garbled Exp $
.\" $NetBSD: byteorder.3,v 1.7 2001/09/16 02:23:09 wiz Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -80,7 +80,7 @@ and
.Sh HISTORY
The
.Nm byteorder
functions appeared in
functions appeared in
.Bx 4.2 .
.Sh BUGS
On the

View File

@ -1,4 +1,4 @@
.\" $NetBSD: ethers.3,v 1.8 1999/03/22 19:44:50 garbled Exp $
.\" $NetBSD: ethers.3,v 1.9 2001/09/16 02:23:09 wiz Exp $
.\"
.\" Written by roland@frob.com. Public domain.
.\"
@ -27,7 +27,7 @@
.Ft int
.Fn ether_line "const char *line" "struct ether_addr *e" "char *hostname"
.Sh DESCRIPTION
Ethernet addresses are represented by the
Ethernet addresses are represented by the
following structure:
.Bd -literal -offset indent
struct ether_addr {
@ -64,7 +64,7 @@ function looks up the given host name and writes the associated
Ethernet address into the structure passed. Both functions return
zero if they find the requested host name or address, and -1 if not.
Each call reads
.Pa /etc/ethers
.Pa /etc/ethers
from the beginning; if a + appears alone on a line in the file, then
.Fn ether_hostton
will consult the

View File

@ -1,4 +1,4 @@
.\" $NetBSD: getaddrinfo.3,v 1.20 2001/08/05 18:09:03 itojun Exp $
.\" $NetBSD: getaddrinfo.3,v 1.21 2001/09/16 02:23:09 wiz Exp $
.\" $KAME: getaddrinfo.3,v 1.29 2001/02/12 09:24:45 itojun Exp $
.\"
.\" Copyright (c) 1983, 1987, 1991, 1993
@ -278,7 +278,7 @@ Here are pitfall cases you may encounter:
.Bl -bullet
.It
.Fn getaddrinfo
will raise an error if members of the
will raise an error if members of the
.Fa hints
structure are not consistent.
For example, for internet address families,

View File

@ -1,4 +1,4 @@
.\" $NetBSD: getifaddrs.3,v 1.4 2001/04/10 15:20:18 wiz Exp $
.\" $NetBSD: getifaddrs.3,v 1.5 2001/09/16 02:23:09 wiz Exp $
.\" BSDI getifaddrs.3,v 2.5 2000/02/23 14:51:59 dab Exp
.\"
.\" Copyright (c) 1995, 1999
@ -82,7 +82,7 @@ address of the interface, if one exists, otherwise it is NULL.
(The
.Li sa_family
field of the
.Li ifa_addr
.Li ifa_addr
field should be consulted to determine the format of the
.Li ifa_addr
address.)
@ -108,7 +108,7 @@ if one exists, otherwise it is NULL.
.Pp
The
.Li ifa_data
field references address family specific data. For
field references address family specific data. For
.Dv AF_LINK
addresses it contains a pointer to the
.Fa struct if_data

View File

@ -1,4 +1,4 @@
.\" $NetBSD: getnetent.3,v 1.8 1999/03/22 19:44:50 garbled Exp $
.\" $NetBSD: getnetent.3,v 1.9 2001/09/16 02:23:09 wiz Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -48,13 +48,13 @@
.Sh SYNOPSIS
.Fd #include <netdb.h>
.Ft struct netent *
.Fn getnetent
.Fn getnetent
.Ft struct netent *
.Fn getnetbyname "const char *name"
.Ft struct netent *
.Fn getnetbyaddr "long net" "int type"
.Fn setnetent "int stayopen"
.Fn endnetent
.Fn endnetent
.Sh DESCRIPTION
The
.Fn getnetent ,
@ -100,7 +100,7 @@ function
opens and rewinds the file. If the
.Fa stayopen
flag is non-zero,
the net data base will not be closed after each call to
the net data base will not be closed after each call to
.Fn getnetbyname
or
.Fn getnetbyaddr .
@ -143,7 +143,7 @@ The
.Fn setnetent ,
and
.Fn endnetent
functions appeared in
functions appeared in
.Bx 4.2 .
.Sh BUGS
The data space used by

View File

@ -1,4 +1,4 @@
.\" $NetBSD: getprotoent.3,v 1.7 1999/03/22 19:44:51 garbled Exp $
.\" $NetBSD: getprotoent.3,v 1.8 2001/09/16 02:23:09 wiz Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -48,13 +48,13 @@
.Sh SYNOPSIS
.Fd #include <netdb.h>
.Ft struct protoent *
.Fn getprotoent
.Fn getprotoent
.Ft struct protoent *
.Fn getprotobyname "const char *name"
.Ft struct protoent *
.Fn getprotobynumber "int proto"
.Fn setprotoent "int stayopen"
.Fn endprotoent
.Fn endprotoent
.Sh DESCRIPTION
The
.Fn getprotoent ,
@ -97,7 +97,7 @@ function
opens and rewinds the file. If the
.Fa stayopen
flag is non-zero,
the net data base will not be closed after each call to
the net data base will not be closed after each call to
.Fn getprotobyname
or
.Fn getprotobynumber .
@ -138,7 +138,7 @@ The
.Fn setprotoent ,
and
.Fn endprotoent
functions appeared in
functions appeared in
.Bx 4.2 .
.Sh BUGS
These functions use a static data space;

View File

@ -1,4 +1,4 @@
.\" $NetBSD: getservent.3,v 1.10 1999/03/24 06:33:38 mycroft Exp $
.\" $NetBSD: getservent.3,v 1.11 2001/09/16 02:23:09 wiz Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -48,7 +48,7 @@
.Sh SYNOPSIS
.Fd #include <netdb.h>
.Ft struct servent *
.Fn getservent
.Fn getservent
.Ft struct servent *
.Fn getservbyname "const char *name" "const char *proto"
.Ft struct servent *
@ -103,7 +103,7 @@ function
opens and rewinds the file. If the
.Fa stayopen
flag is non-zero,
the net data base will not be closed after each call to
the net data base will not be closed after each call to
.Fn getservbyname
or
.Fn getservbyport .
@ -126,7 +126,7 @@ or until
.Dv EOF
is encountered.
If a protocol name is also supplied (non-\c
.Dv NULL ) ,
.Dv NULL ) ,
searches must also match the protocol.
.Sh FILES
.Bl -tag -width /etc/services -compact
@ -148,7 +148,7 @@ The
.Fn setservent ,
and
.Fn endservent
functions appeared in
functions appeared in
.Bx 4.2 .
.Sh BUGS
These functions use static data storage;

View File

@ -1,4 +1,4 @@
.\" $NetBSD: inet_net.3,v 1.4 1999/03/22 19:44:52 garbled Exp $
.\" $NetBSD: inet_net.3,v 1.5 2001/09/16 02:23:09 wiz Exp $
.\"
.\" Copyright (c) 1997 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -103,7 +103,7 @@ as a byte of data and assigned, from left to right,
to the four bytes of an Internet network number. Note
that when an Internet network number is viewed as a 32-bit
integer quantity on a system that uses little-endian
byte order (such as the
byte order (such as the
.Tn Intel 386, 486
and
.Tn Pentium

View File

@ -1,4 +1,4 @@
.\" $NetBSD: iso_addr.3,v 1.4 1998/02/05 18:48:51 perry Exp $
.\" $NetBSD: iso_addr.3,v 1.5 2001/09/16 02:23:09 wiz Exp $
.\"
.\" Copyright (c) 1993
.\" The Regents of the University of California. All rights reserved.
@ -64,7 +64,7 @@ addresses and returns
.Tn ASCII
strings representing NSAPs (network service
access points) in a
notation inverse to that accepted by
notation inverse to that accepted by
.Fn iso_addr .
.Pp
Unfortunately, no universal standard exists for representing
@ -102,7 +102,7 @@ The
.Fn iso_addr
and
.Fn iso_ntoa
functions appeared in
functions appeared in
.Bx 4.3 Reno .
.Sh BUGS
The returned values

View File

@ -1,4 +1,4 @@
.\" $NetBSD: linkaddr.3,v 1.6 1999/06/25 16:13:21 sommerfeld Exp $
.\" $NetBSD: linkaddr.3,v 1.7 2001/09/16 02:23:09 wiz Exp $
.\"
.\" Copyright (c) 1993
.\" The Regents of the University of California. All rights reserved.
@ -66,11 +66,11 @@ string representing some of the information present, including the
link level address itself, and the interface name or number, if present.
This facility is experimental and is still subject to change.
.Pp
Prior to a call to
Prior to a call to
.Fn link_addr ,
.Fa sdl->sdl_len
.Fa sdl->sdl_len
must be initialized to the size of the link-level socket structure,
typically
typically
.Fa sizeof(struct sockaddr_dl) .
.Pp
For

View File

@ -1,4 +1,4 @@
.\" $NetBSD: ns.3,v 1.9 2001/07/08 20:18:36 jdolecek Exp $
.\" $NetBSD: ns.3,v 1.10 2001/09/16 02:23:09 wiz Exp $
.\"
.\" Copyright (c) 1986, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -47,7 +47,7 @@ address conversion routines
.Sh SYNOPSIS
.Fd #include <sys/types.h>
.Fd #include <netns/ns.h>
.Ft struct ns_addr
.Ft struct ns_addr
.Fn ns_addr "const char *cp"
.Ft char *
.Fn ns_ntoa "struct ns_addr ns"
@ -71,7 +71,7 @@ notation in common use in the Xerox Development Environment:
.Ed
.Pp
Trailing zero fields are suppressed, and each number is printed in hexadecimal,
in a format suitable for input to
in a format suitable for input to
.Fn ns_addr .
Any fields lacking super-decimal digits will have a
trailing

View File

@ -1,4 +1,4 @@
.\" $NetBSD: nsdispatch.3,v 1.8 1999/03/22 19:44:53 garbled Exp $
.\" $NetBSD: nsdispatch.3,v 1.9 2001/09/16 02:23:09 wiz Exp $
.\"
.\" Copyright (c) 1997, 1998, 1999 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -56,7 +56,7 @@
.Sh DESCRIPTION
The
.Fn nsdispatch
function invokes the callback functions specified in
function invokes the callback functions specified in
.Va dtab
in the order given in
.Pa /etc/nsswitch.conf
@ -94,7 +94,7 @@ The last entry in
should contain
.Dv NULL
values for
.Va src ,
.Va src ,
.Va cb ,
and
.Va cb_data .
@ -131,7 +131,7 @@ For each default source type, an entry with
set to the name of the source, and
.Va flags
set to the relevant flags
(usually
(usually
.Dv NS_SUCCESS ;
refer to
.Sx Callback return values

View File

@ -1,4 +1,4 @@
.\" $NetBSD: rcmd.3,v 1.19 2000/01/27 05:33:06 itojun Exp $
.\" $NetBSD: rcmd.3,v 1.20 2001/09/16 02:23:09 wiz Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -148,7 +148,7 @@ If the connection succeeds,
a socket in the Internet domain of type
.Dv SOCK_STREAM
is returned to the caller, and given to the remote
command as
command as
.Em stdin
and
.Em stdout .
@ -166,10 +166,10 @@ signal numbers, to be
forwarded to the process group of the command.
If
.Fa fd2p
is 0, then the
is 0, then the
.Em stderr
(unit 2 of the remote
command) will be made the same as the
command) will be made the same as the
.Em stdout
and no
provision is made for sending arbitrary signals to the remote process,
@ -194,7 +194,7 @@ and
.Fn rresvport_af
functions are used to obtain a socket with a privileged
address bound to it. This socket is suitable for use
by
by
.Fn rcmd
and several other functions. Privileged Internet ports are those
in the range 0 to 1023. Only the super-user
@ -263,7 +263,7 @@ It returns \-1 on error and prints a diagnostic message on the standard error.
.Pp
The
.Fn rresvport
and
and
.Fn rresvport_af
function
return a valid, bound socket descriptor on success.
@ -287,8 +287,8 @@ function, this variable is used as the program to run instead of
.Xr rsh 1 ,
.Xr intro 2 ,
.Xr rexec 3 ,
.Xr hosts.equiv 5 ,
.Xr rhosts 5 ,
.Xr hosts.equiv 5 ,
.Xr rhosts 5 ,
.Xr rexecd 8 ,
.Xr rlogind 8 ,
.Xr rshd 8
@ -299,7 +299,7 @@ The
.Fn iruserok
and
.Fn ruserok
functions appeared in
functions appeared in
.Bx 4.2 ,
where the
.Fn orcmd

View File

@ -1,4 +1,4 @@
.\" $NetBSD: resolver.3,v 1.13 2000/08/09 14:41:05 itojun Exp $
.\" $NetBSD: resolver.3,v 1.14 2001/09/16 02:23:09 wiz Exp $
.\"
.\" Copyright (c) 1985, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -83,7 +83,7 @@
.Fa "u_char *answer"
.Fa "int anslen"
.Fc
.Fn res_init
.Fn res_init
.Fo dn_comp
.Fa "const char *exp_dn"
.Fa "u_char *comp_dn"
@ -356,5 +356,5 @@ see
.Sh HISTORY
The
.Nm
function appeared in
function appeared in
.Bx 4.3 .