mirror of
https://github.com/opnsense/src.git
synced 2026-04-04 17:05:14 -04:00
Store the new send tag in the right place.
r350501 added the 'st' parameter, but did not pass it down to if_snd_tag_alloc(). Reviewed by: gallatin Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D26997
This commit is contained in:
parent
62568e886a
commit
aebfdc1fec
1 changed files with 1 additions and 1 deletions
|
|
@ -3333,7 +3333,7 @@ in_pcbattach_txrtlmt(struct inpcb *inp, struct ifnet *ifp,
|
|||
if (ifp->if_snd_tag_alloc == NULL) {
|
||||
error = EOPNOTSUPP;
|
||||
} else {
|
||||
error = ifp->if_snd_tag_alloc(ifp, ¶ms, &inp->inp_snd_tag);
|
||||
error = ifp->if_snd_tag_alloc(ifp, ¶ms, st);
|
||||
|
||||
#ifdef INET
|
||||
if (error == 0) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue