diff options
author | 2015-07-09 05:45:25 +0000 | |
---|---|---|
committer | 2015-07-09 05:45:25 +0000 | |
commit | 60f4930ee694180892d1b81870c75b246f318080 (patch) | |
tree | 44653fde541984ec31774a5db636d9432c30c532 /sys/netinet/tcp_input.c | |
parent | Name unamed structures, from Ludovic Coues with some tweaks. (diff) | |
download | wireguard-openbsd-60f4930ee694180892d1b81870c75b246f318080.tar.xz wireguard-openbsd-60f4930ee694180892d1b81870c75b246f318080.zip |
Remove unused arguments and the associated code from nd6_nud_hint().
ok claudio@
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index dd4eca286ae..bd51a2814de 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.293 2015/06/16 11:09:40 mpi Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.294 2015/07/09 05:45:25 mpi Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -146,7 +146,7 @@ struct timeval tcp_ackdrop_ppslim_last; do { \ if (tp && tp->t_inpcb && (tp->t_inpcb->inp_flags & INP_IPV6) && \ tp->t_inpcb->inp_route6.ro_rt) { \ - nd6_nud_hint(tp->t_inpcb->inp_route6.ro_rt, NULL, 0, \ + nd6_nud_hint(tp->t_inpcb->inp_route6.ro_rt, \ tp->t_inpcb->inp_rtableid); \ } \ } while (0) |