diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2005-06-07 02:30:48 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2005-06-07 02:30:48 +0000 |
commit | 2470252b108ce55db32ffa783476f35abd5d2c1a (patch) | |
tree | 49616ced8e17cf249ee8a1c07925f95274dad675 /sys/compat | |
parent | d611c626dcfedc32389bf4cef66844f3bbe7f411 (diff) |
remove CCITT handling
Diffstat (limited to 'sys/compat')
-rw-r--r-- | sys/compat/linux/linux_socket.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/compat/linux/linux_socket.c b/sys/compat/linux/linux_socket.c index c885d9e2675..f4217145118 100644 --- a/sys/compat/linux/linux_socket.c +++ b/sys/compat/linux/linux_socket.c @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_socket.c,v 1.32 2004/07/08 15:11:37 tedu Exp $ */ +/* $OpenBSD: linux_socket.c,v 1.33 2005/06/07 02:30:47 henning Exp $ */ /* $NetBSD: linux_socket.c,v 1.14 1996/04/05 00:01:50 christos Exp $ */ /* @@ -114,13 +114,13 @@ static const int linux_to_bsd_domain_[LINUX_AF_MAX] = { AF_UNSPEC, AF_UNIX, AF_INET, - AF_CCITT, /* LINUX_AF_AX25 */ + -1, /* LINUX_AF_AX25 */ AF_IPX, AF_APPLETALK, -1, /* LINUX_AF_NETROM */ -1, /* LINUX_AF_BRIDGE */ -1, /* LINUX_AF_ATMPVC */ - AF_CCITT, /* LINUX_AF_X25 */ + -1, /* LINUX_AF_X25 */ AF_INET6, -1, /* LINUX_AF_ROSE */ AF_DECnet, @@ -148,7 +148,7 @@ static const int bsd_to_linux_domain_[AF_MAX] = { -1, /* AF_ISO */ -1, /* AF_ECMA */ -1, /* AF_DATAKIT */ - LINUX_AF_AX25, /* AF_CCITT */ + -1, /* AF_CCITT */ -1, /* LINUX_AF_SNA */ -1, /* LINUX_AF_DECnet */ -1, /* AF_DLI */ |