mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
tcp: whitespace cleanup
No functional change intended. Reported by: markj Sponsored by: Netflix, Inc. (cherry picked from commit a2e4f45480c248036b002904ddbceef20ba7c523)
This commit is contained in:
parent
00c3c39fcc
commit
9a3bb25bab
1 changed files with 3 additions and 3 deletions
|
|
@ -237,7 +237,7 @@ syncache_free(struct syncache *sc)
|
|||
{
|
||||
|
||||
if (sc->sc_ipopts)
|
||||
(void) m_free(sc->sc_ipopts);
|
||||
(void)m_free(sc->sc_ipopts);
|
||||
if (sc->sc_cred)
|
||||
crfree(sc->sc_cred);
|
||||
#ifdef MAC
|
||||
|
|
@ -1530,7 +1530,7 @@ syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th,
|
|||
* forget it and use the new one we've been given.
|
||||
*/
|
||||
if (sc->sc_ipopts)
|
||||
(void) m_free(sc->sc_ipopts);
|
||||
(void)m_free(sc->sc_ipopts);
|
||||
sc->sc_ipopts = ipopts;
|
||||
}
|
||||
/*
|
||||
|
|
@ -1615,7 +1615,7 @@ syncache_add(struct in_conninfo *inc, struct tcpopt *to, struct tcphdr *th,
|
|||
__func__));
|
||||
SCH_UNLOCK(sch);
|
||||
if (ipopts)
|
||||
(void) m_free(ipopts);
|
||||
(void)m_free(ipopts);
|
||||
goto done;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue