K 10 svn:author V 3 dim K 8 svn:date V 27 2022-07-29T17:09:45.759173Z K 7 svn:log V 595 Fix unused variable warning in if_lagg.c With clang 15, the following -Werror warning is produced: sys/net/if_lagg.c:2413:6: error: variable 'active_ports' set but not used [-Werror,-Wunused-but-set-variable] int active_ports = 0; ^ The 'active_ports' variable appears to have been a debugging aid that has never been used for anything (ref https://reviews.freebsd.org/D549), so remove it. MFC after: 3 days (cherry picked from commit fa267a329ffa3d0e02c3c3a52dd5df5231d92cba) Git Hash: 459bc065e29bed81bb2e8454252aaeb5792e49d2 Git Author: dim@FreeBSD.org END