diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-10-14 21:36:28 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-10-14 21:36:28 +0000 |
commit | ec0e78b6596661dd1918b16a1f8b8594bdb5b036 (patch) | |
tree | fe798decb0cd6f2e4c40001b4c4c0162b1dc0a34 /usr.bin/netstat | |
parent | 9c7f701201d27ef2d5880d01479515e3abbcc287 (diff) |
inet6print() has no 4th argument
Diffstat (limited to 'usr.bin/netstat')
-rw-r--r-- | usr.bin/netstat/inet.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/netstat/inet.c b/usr.bin/netstat/inet.c index 5358fe9b94a..5556843979e 100644 --- a/usr.bin/netstat/inet.c +++ b/usr.bin/netstat/inet.c @@ -1,4 +1,4 @@ -/* $OpenBSD: inet.c,v 1.107 2008/09/16 15:48:12 gollo Exp $ */ +/* $OpenBSD: inet.c,v 1.108 2008/10/14 21:36:27 deraadt Exp $ */ /* $NetBSD: inet.c,v 1.14 1995/10/03 21:42:37 thorpej Exp $ */ /* @@ -93,7 +93,7 @@ static void protopr0(u_long, char *, int); char *inetname(struct in_addr *); void inetprint(struct in_addr *, in_port_t, char *, int); char *inet6name(struct in6_addr *); -void inet6print(struct in6_addr *, int, char *, int); +void inet6print(struct in6_addr *, int, char *); /* * Print a summary of connections related to an Internet @@ -199,9 +199,9 @@ protopr0(u_long off, char *name, int af) sockb.so_snd.sb_cc); if (inpcb.inp_flags & INP_IPV6) { inet6print(&inpcb.inp_laddr6, (int)inpcb.inp_lport, - name, 1); + name); inet6print(&inpcb.inp_faddr6, (int)inpcb.inp_fport, - name, 0); + name); } else { inetprint(&inpcb.inp_laddr, (int)inpcb.inp_lport, name, 1); |