diff options
author | asmodai <asmodai@FreeBSD.org> | 2001-02-06 12:05:58 +0000 |
---|---|---|
committer | asmodai <asmodai@FreeBSD.org> | 2001-02-06 12:05:58 +0000 |
commit | 7d76aced28ec9c258bd533a4e33516f71f44b6de (patch) | |
tree | 51f7811d4e593e1c5d5f38cc3d2fbeec28fcd3fe /sys/net | |
parent | 7dcfea0100bdd36891f50e5740f8a01da166b7a8 (diff) | |
download | FreeBSD-src-7d76aced28ec9c258bd533a4e33516f71f44b6de.zip FreeBSD-src-7d76aced28ec9c258bd533a4e33516f71f44b6de.tar.gz |
Fix typo: compatability -> compatibility.
Compatability is not an existing english word.
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/net/if.h b/sys/net/if.h index 8afeac0..bcc10ad 100644 --- a/sys/net/if.h +++ b/sys/net/if.h @@ -39,7 +39,7 @@ /* * <net/if.h> does not depend on <sys/time.h> on most other systems. This - * helps userland compatability. (struct timeval ifi_lastchange) + * helps userland compatibility. (struct timeval ifi_lastchange) */ #ifndef _KERNEL #include <sys/time.h> @@ -109,7 +109,7 @@ struct if_data { */ struct if_msghdr { u_short ifm_msglen; /* to skip over non-understood messages */ - u_char ifm_version; /* future binary compatability */ + u_char ifm_version; /* future binary compatibility */ u_char ifm_type; /* message type */ int ifm_addrs; /* like rtm_addrs */ int ifm_flags; /* value of if_flags */ @@ -123,7 +123,7 @@ struct if_msghdr { */ struct ifa_msghdr { u_short ifam_msglen; /* to skip over non-understood messages */ - u_char ifam_version; /* future binary compatability */ + u_char ifam_version; /* future binary compatibility */ u_char ifam_type; /* message type */ int ifam_addrs; /* like rtm_addrs */ int ifam_flags; /* value of ifa_flags */ @@ -137,7 +137,7 @@ struct ifa_msghdr { */ struct ifma_msghdr { u_short ifmam_msglen; /* to skip over non-understood messages */ - u_char ifmam_version; /* future binary compatability */ + u_char ifmam_version; /* future binary compatibility */ u_char ifmam_type; /* message type */ int ifmam_addrs; /* like rtm_addrs */ int ifmam_flags; /* value of ifa_flags */ |