The branch stable/15 has been updated by tuexen:

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

commit cfda7828e33d49b28795cf3c894086fa965db9f7
Author:     Michael Tuexen <[email protected]>
AuthorDate: 2025-09-24 08:51:06 +0000
Commit:     Michael Tuexen <[email protected]>
CommitDate: 2025-09-28 09:09:11 +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 55e062e35a54..a336571f12c9 100644
--- a/sys/netinet/tcp_syncache.h
+++ b/sys/netinet/tcp_syncache.h
@@ -50,7 +50,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 */
@@ -59,7 +59,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