diff options
author | Michael Tuexen <tuexen@FreeBSD.org> | 2023-03-18 22:58:50 +0000 |
---|---|---|
committer | Michael Tuexen <tuexen@FreeBSD.org> | 2023-03-18 22:58:50 +0000 |
commit | 48345048cd1dc4f9304334606d99e95a521b36db (patch) | |
tree | 4617d93f6caaa534d84327777fa10be6cae4e6cf /sys | |
parent | 069767091e54a2537ae509dcdf3005fb0f50ab84 (diff) |
sctp: fix typo in assignment
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/sctp_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/sctp_output.c b/sys/netinet/sctp_output.c index 2ce05336482a..3b9a06b72d8a 100644 --- a/sys/netinet/sctp_output.c +++ b/sys/netinet/sctp_output.c @@ -8428,7 +8428,7 @@ again_one_more_time: * flight size since this little guy * is a control only packet. */ - use_zero_crc = asoc->zero_checksum = 2; + use_zero_crc = asoc->zero_checksum == 2; if (asconf) { sctp_timer_start(SCTP_TIMER_TYPE_ASCONF, inp, stcb, net); use_zero_crc = false; |