From 5e26ee2221e2991121ede72fcb4be2d0ff969dc8 Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Wed, 15 Jun 2016 21:56:58 +0000 Subject: [PATCH] net.c: use AF_INET6 unconditionally * net.c (SYS_FUNC(socket)): Do not check for AF_INET6 availability. --- net.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/net.c b/net.c index cb4e6369..124ac8dc 100644 --- a/net.c +++ b/net.c @@ -774,9 +774,7 @@ SYS_FUNC(socket) tprints(", "); switch (tcp->u_arg[0]) { case AF_INET: -#ifdef AF_INET6 case AF_INET6: -#endif printxval(inet_protocols, tcp->u_arg[2], "IPPROTO_???"); break; #ifdef AF_IPX -- 2.40.0