1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-02 12:20:51 +00:00

Fix a typo and fix indenting for struct sockaddr to match other structs.

No content changes.
MFC after:	3 weeks
This commit is contained in:
Jens Schweikhardt 2002-01-22 21:26:15 +00:00
parent 65ab9c78a3
commit 8f2087fb45
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=89672

View File

@ -123,17 +123,17 @@ Consult the appropriate manual pages in this section for more
information regarding the support for each protocol family.
.Sh ADDRESSING
Associated with each protocol family is an address
format. All network address adhere to a general structure,
format. All network addresses adhere to a general structure,
called a sockaddr, described below.
However, each protocol
imposes finer and more specific structure, generally renaming
the variant, which is discussed in the protocol family manual
page alluded to above.
.Bd -literal -offset indent
struct sockaddr {
u_char sa_len;
u_char sa_family;
char sa_data[14];
struct sockaddr {
u_char sa_len;
u_char sa_family;
char sa_data[14];
};
.Ed
.Pp