diff options
author | wollman <wollman@FreeBSD.org> | 1996-06-18 15:22:26 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1996-06-18 15:22:26 +0000 |
commit | 358b715a24f5eb80c6403f2a5cb4a97daa8f37d3 (patch) | |
tree | 3ea3288cdc165f07ad02caf19376af63a7fbe79c | |
parent | ed39fae1fc3a4d4a31b4533479452d9f4c59580d (diff) | |
download | FreeBSD-src-358b715a24f5eb80c6403f2a5cb4a97daa8f37d3.zip FreeBSD-src-358b715a24f5eb80c6403f2a5cb4a97daa8f37d3.tar.gz |
When bringing the netkey stuff over, I forgot that I had decided to change
AF_KEY into pseudo_AF_KEY, and defined PF_KEY incorrectly. Fix.
Noticed by: pst
-rw-r--r-- | sys/sys/socket.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/socket.h b/sys/sys/socket.h index c18ff2a..ece2583 100644 --- a/sys/sys/socket.h +++ b/sys/sys/socket.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)socket.h 8.4 (Berkeley) 2/21/94 - * $Id: socket.h,v 1.11 1996/05/09 20:15:21 wollman Exp $ + * $Id: socket.h,v 1.12 1996/06/14 17:22:18 wollman Exp $ */ #ifndef _SYS_SOCKET_H_ @@ -179,7 +179,7 @@ struct sockproto { #define PF_RTIP pseudo_AF_FTIP /* same format as AF_INET */ #define PF_PIP pseudo_AF_PIP #define PF_ISDN AF_ISDN -#define PF_KEY AF_KEY +#define PF_KEY pseudo_AF_KEY #define PF_MAX AF_MAX |