git: 33197f22b5c5 - releng/14.2 - sctp: editorial cleanup

From: Michael Tuexen <tuexen_at_FreeBSD.org>
Date: Thu, 07 Nov 2024 09:47:17 UTC
The branch releng/14.2 has been updated by tuexen:

URL: https://cgit.FreeBSD.org/src/commit/?id=33197f22b5c5b220d7849993f56afa96fdd98b18

commit 33197f22b5c5b220d7849993f56afa96fdd98b18
Author:     Michael Tuexen <tuexen@FreeBSD.org>
AuthorDate: 2024-11-02 15:00:59 +0000
Commit:     Michael Tuexen <tuexen@FreeBSD.org>
CommitDate: 2024-11-07 00:01:23 +0000

    sctp: editorial cleanup
    
    Improve consistency, no functional change intended.
    
    (cherry picked from commit d839cf2fbb47c52d5153fb366c51bd6f6a3dd0fd)
    (cherry picked from commit 107704217b5733a2cae4e0fa1940f7ac66780f84)
    
    Approved by:    re (cperviva)
---
 sys/netinet/sctp_pcb.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/netinet/sctp_pcb.c b/sys/netinet/sctp_pcb.c
index 0030c5385390..b7b531ab33ab 100644
--- a/sys/netinet/sctp_pcb.c
+++ b/sys/netinet/sctp_pcb.c
@@ -312,7 +312,7 @@ sctp_mark_ifa_addr_down(uint32_t vrf_id, struct sockaddr *addr,
 		}
 	}
 
-	sctp_ifap->localifa_flags &= (~SCTP_ADDR_VALID);
+	sctp_ifap->localifa_flags &= ~SCTP_ADDR_VALID;
 	sctp_ifap->localifa_flags |= SCTP_ADDR_IFA_UNUSEABLE;
 out:
 	SCTP_IPI_ADDR_RUNLOCK();
@@ -354,7 +354,7 @@ sctp_mark_ifa_addr_up(uint32_t vrf_id, struct sockaddr *addr,
 		}
 	}
 
-	sctp_ifap->localifa_flags &= (~SCTP_ADDR_IFA_UNUSEABLE);
+	sctp_ifap->localifa_flags &= ~SCTP_ADDR_IFA_UNUSEABLE;
 	sctp_ifap->localifa_flags |= SCTP_ADDR_VALID;
 out:
 	SCTP_IPI_ADDR_RUNLOCK();