diff options
author | schweikh <schweikh@FreeBSD.org> | 2002-01-22 21:26:15 +0000 |
---|---|---|
committer | schweikh <schweikh@FreeBSD.org> | 2002-01-22 21:26:15 +0000 |
commit | ad98feaabab2f6ad29a88adeab694de2b111cca7 (patch) | |
tree | a3eb097ce7278467701599f6c29ad8f5db2fce7c /share/man | |
parent | e0c3aed12ef4d190de753d6850ee597a835f7fc9 (diff) | |
download | FreeBSD-src-ad98feaabab2f6ad29a88adeab694de2b111cca7.zip FreeBSD-src-ad98feaabab2f6ad29a88adeab694de2b111cca7.tar.gz |
Fix a typo and fix indenting for struct sockaddr to match other structs.
No content changes.
MFC after: 3 weeks
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man4/netintro.4 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/share/man/man4/netintro.4 b/share/man/man4/netintro.4 index 9ddaa59..506b89f 100644 --- a/share/man/man4/netintro.4 +++ b/share/man/man4/netintro.4 @@ -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 |