CVSROOT: /cvs Module name: src Changes by: [email protected] 2022/11/21 15:50:07
Modified files:
sys/net : pf_if.c
Log message:
Replace manual loop and duplicate RB_NEXT with RB_FOREACH
The loop begins with saving a pointer to the next interface, does work and
then gets the same next interface again, for nothing.
Switch to the elsewhere consistently used RB_FOREACH helper.
OK sashan
