K 10 svn:author V 3 dim K 8 svn:date V 27 2022-07-29T18:49:53.360894Z K 7 svn:log V 644 Fix unused variable warning in sctp_output.c With clang 15, the following -Werror warning is produced: sys/netinet/sctp_output.c:9367:33: error: variable 'cnt_thru' set but not used [-Werror,-Wunused-but-set-variable] int no_fragmentflg, bundle_at, cnt_thru; ^ The 'cnt_thru' variable was in sctp_output.c when it was first added, but appears to have been a debugging aid that has never been used, so remove it. MFC after: 3 days (cherry picked from commit 9057feddc4b05d2b2b29e4db274c28af3d574d76) Git Hash: 8dd6ab0fd0966d3ef22f3b475dc6f50bdff5ee7b Git Author: dim@FreeBSD.org END