Fix route lookup condition: do IPv6 route lookup for source based on

NG_NETFLOW_CONF_NOSRCLOOKUP instead of NG_NETFLOW_CONF_NODSTLOOKUP.
This commit is contained in:
Alexander V. Chernikov 2016-01-04 17:25:32 +00:00
parent 45a8de88c6
commit e971a31425
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=293167

View File

@ -451,7 +451,7 @@ hash6_insert(priv_p priv, struct flow_hash_entry *hsh6, struct flow6_rec *r,
}
}
if ((flags & NG_NETFLOW_CONF_NODSTLOOKUP) == 0) {
if ((flags & NG_NETFLOW_CONF_NOSRCLOOKUP) == 0) {
/* Do route lookup on source address, to fill in src_mask. */
bzero(&rin6, sizeof(struct route_in6));
src = (struct sockaddr_in6 *)&rin6.ro_dst;