diff options
author | Gleb Smirnoff <glebius@FreeBSD.org> | 2014-11-30 12:52:33 +0000 |
---|---|---|
committer | Gleb Smirnoff <glebius@FreeBSD.org> | 2014-11-30 12:52:33 +0000 |
commit | 0f9d0a73a495b204ea02cf1da28db1bdd0c7e40b (patch) | |
tree | 6aca46c356e9150741198b08512009a1b5138ca0 /usr.bin/netstat/unix.c | |
parent | abcd4129406a0a80e0c53cfba05d9c5b6ff4c576 (diff) |
Notes
Diffstat (limited to 'usr.bin/netstat/unix.c')
-rw-r--r-- | usr.bin/netstat/unix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/netstat/unix.c b/usr.bin/netstat/unix.c index 027e812cf7cd6..a5cc037840be7 100644 --- a/usr.bin/netstat/unix.c +++ b/usr.bin/netstat/unix.c @@ -287,7 +287,8 @@ unixdomainpr(struct xunpcb *xunp, struct xsocket *so) } else { printf("%8lx %-6.6s %6u %6u %8lx %8lx %8lx %8lx", (long)so->so_pcb, socktype[so->so_type], so->so_rcv.sb_cc, - so->so_snd.sb_cc, (long)unp->unp_vnode, (long)unp->unp_conn, + so->so_snd.sb_cc, (long)unp->unp_vnode, + (long)unp->unp_conn, (long)LIST_FIRST(&unp->unp_refs), (long)LIST_NEXT(unp, unp_reflink)); } |