Module Name: src
Committed By: ozaki-r
Date: Tue Jun 21 02:14:11 UTC 2016
Modified Files:
src/sys/netinet6: nd6.c
Log Message:
Fix nd6_output (if_output_lock conversion mistake)
To generate a diff of this commit:
cvs rdiff -u -r1.196 -r1.197 src/sys/netinet6/nd6.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/netinet6/nd6.c
diff -u src/sys/netinet6/nd6.c:1.196 src/sys/netinet6/nd6.c:1.197
--- src/sys/netinet6/nd6.c:1.196 Mon Jun 20 06:46:38 2016
+++ src/sys/netinet6/nd6.c Tue Jun 21 02:14:11 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: nd6.c,v 1.196 2016/06/20 06:46:38 knakahara Exp $ */
+/* $NetBSD: nd6.c,v 1.197 2016/06/21 02:14:11 ozaki-r Exp $ */
/* $KAME: nd6.c,v 1.279 2002/06/08 11:16:51 itojun Exp $ */
/*
@@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: nd6.c,v 1.196 2016/06/20 06:46:38 knakahara Exp $");
+__KERNEL_RCSID(0, "$NetBSD: nd6.c,v 1.197 2016/06/21 02:14:11 ozaki-r Exp $");
#ifdef _KERNEL_OPT
#include "opt_net_mpsafe.h"
@@ -2292,7 +2292,7 @@ nd6_output(struct ifnet *ifp, struct ifn
LLE_WUNLOCK(ln);
if ((ifp->if_flags & IFF_LOOPBACK) != 0)
- error = if_output_lock(origifp, origifp, m, sin6tocsa(dst), rt);
+ error = if_output_lock(ifp, origifp, m, sin6tocsa(dst), rt);
else
error = if_output_lock(ifp, ifp, m, sin6tocsa(dst), rt);
goto exit;