The branch stable/14 has been updated by tuexen:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=994b3f20900d59fca8935525f4007de1378b2918

commit 994b3f20900d59fca8935525f4007de1378b2918
Author:     Michael Tuexen <[email protected]>
AuthorDate: 2025-09-24 08:51:06 +0000
Commit:     Michael Tuexen <[email protected]>
CommitDate: 2025-09-28 09:16:20 +0000

    tcp: whitespace cleanup
    
    No functional change intended.
    
    Sponsored by:   Netflix, Inc.
    
    (cherry picked from commit 40417930f6ba50f61990fb995dd071c6fd42d080)
---
 sys/netinet/tcp_syncache.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/netinet/tcp_syncache.h b/sys/netinet/tcp_syncache.h
index 878b1ddabc7e..219cddee0b1d 100644
--- a/sys/netinet/tcp_syncache.h
+++ b/sys/netinet/tcp_syncache.h
@@ -52,7 +52,7 @@ int    syncache_pcblist(struct sysctl_req *);
 
 struct syncache {
        TAILQ_ENTRY(syncache)   sc_hash;
-       struct          in_conninfo sc_inc;     /* addresses */
+       struct in_conninfo      sc_inc;         /* addresses */
        int             sc_rxttime;             /* retransmit time */
        u_int16_t       sc_rxmits;              /* retransmit counter */
        u_int16_t       sc_port;                /* remote UDP encaps port */
@@ -61,7 +61,7 @@ struct syncache {
        u_int32_t       sc_flowlabel;           /* IPv6 flowlabel */
        tcp_seq         sc_irs;                 /* seq from peer */
        tcp_seq         sc_iss;                 /* our ISS */
-       struct          mbuf *sc_ipopts;        /* source route */
+       struct mbuf     *sc_ipopts;             /* source route */
        u_int16_t       sc_peer_mss;            /* peer's MSS */
        u_int16_t       sc_wnd;                 /* advertised window */
        u_int8_t        sc_ip_ttl;              /* TTL / Hop Limit */

Reply via email to