diff options
author | rwatson <rwatson@FreeBSD.org> | 2004-12-31 00:32:50 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2004-12-31 00:32:50 +0000 |
commit | e1d1aaa012c9d5a1a1ab782daafff83fbba24197 (patch) | |
tree | 5bb9867431582c600708571b09870e41f652cbcf /usr.bin/netstat/main.c | |
parent | a8001e07a0a6eafe699578bd97cf5efd54ab363f (diff) | |
download | FreeBSD-src-e1d1aaa012c9d5a1a1ab782daafff83fbba24197.zip FreeBSD-src-e1d1aaa012c9d5a1a1ab782daafff83fbba24197.tar.gz |
Update netstat(1) for recent conversion of netipx to queue(9) from
home-brew linked lists. Read in the ipxpcb_list structure first in
order to find the first pcb pointer. Then follow the chain as
before, only the termination condition is a NULL next pointer
rather than a next pointer equal to the original offset.
Diffstat (limited to 'usr.bin/netstat/main.c')
-rw-r--r-- | usr.bin/netstat/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/netstat/main.c b/usr.bin/netstat/main.c index 13d52d6..e5cd2fd 100644 --- a/usr.bin/netstat/main.c +++ b/usr.bin/netstat/main.c @@ -83,7 +83,7 @@ static struct nlist nl[] = { #define N_VIFTABLE 5 { "_viftable" }, #define N_IPX 6 - { "_ipxpcb"}, + { "_ipxpcb_list"}, #define N_IPXSTAT 7 { "_ipxstat"}, #define N_SPXSTAT 8 |