Make the ipx part of netstat work again.

This commit is contained in:
John Hay 1999-02-06 19:12:48 +00:00
parent db909d8274
commit e30e913cf7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=43722

View file

@ -42,7 +42,7 @@ char const copyright[] =
static char sccsid[] = "@(#)main.c 8.4 (Berkeley) 3/1/94";
#endif
static const char rcsid[] =
"$Id: main.c,v 1.22 1998/08/08 08:13:04 phk Exp $";
"$Id: main.c,v 1.23 1999/01/18 02:09:15 fenner Exp $";
#endif /* not lint */
#include <sys/param.h>
@ -158,11 +158,11 @@ struct protox atalkprotox[] = {
struct protox ipxprotox[] = {
{ N_IPX, N_IPXSTAT, 1, ipxprotopr,
ipx_stats, "ipx" },
ipx_stats, "ipx", 0 },
{ N_IPX, N_SPXSTAT, 1, ipxprotopr,
spx_stats, "spx" },
spx_stats, "spx", 0 },
{ -1, -1, 0, 0,
0, 0 }
0, 0, 0 }
};
#ifdef NS
@ -408,9 +408,11 @@ main(argc, argv)
}
endprotoent();
}
if (af == AF_IPX || af == AF_UNSPEC)
if (af == AF_IPX || af == AF_UNSPEC) {
kread(0, 0, 0);
for (tp = ipxprotox; tp->pr_name; tp++)
printproto(tp, tp->pr_name);
}
if (af == AF_APPLETALK || af == AF_UNSPEC)
for (tp = atalkprotox; tp->pr_name; tp++)
printproto(tp, tp->pr_name);