View | Details | Raw Unified | Return to bug 165190 | Differences between
and this patch

Collapse All | Expand All

(-)sys/netinet6/nd6.c (-4 lines)
Lines 1928-1937 Link Here
1928
		}
1928
		}
1929
		return (error);
1929
		return (error);
1930
	}
1930
	}
1931
	if ((ifp->if_flags & IFF_LOOPBACK) != 0) {
1932
		return ((*ifp->if_output)(origifp, m, (struct sockaddr *)dst,
1933
		    NULL));
1934
	}
1935
	error = (*ifp->if_output)(ifp, m, (struct sockaddr *)dst, NULL);
1931
	error = (*ifp->if_output)(ifp, m, (struct sockaddr *)dst, NULL);
1936
	return (error);
1932
	return (error);
1937
1933

Return to bug 165190