On Thu, Feb 03, 2022 at 07:53:43AM +0000, Jason McIntyre wrote: > On Wed, Feb 02, 2022 at 07:46:39PM -0600, Matthew Martin wrote: > > Two DPRINTFs in sys/net/if_wg.c are missing a newline. > > > > if this is committed, the committer may also want to question the dodgy > capitals in "Delay Unsupported". > > jmc
ping diff --git if_wg.c if_wg.c index 13c48f42c54..a3efd577dbc 100644 --- if_wg.c +++ if_wg.c @@ -2156,7 +2156,7 @@ wg_output(struct ifnet *ifp, struct mbuf *m, struct sockaddr *sa, } if (m->m_pkthdr.ph_loopcnt++ > M_MAXLOOP) { - DPRINTF(sc, "Packet looped"); + DPRINTF(sc, "Packet looped\n"); ret = ELOOP; goto error; } @@ -2169,7 +2169,7 @@ wg_output(struct ifnet *ifp, struct mbuf *m, struct sockaddr *sa, * another aip_lookup in wg_qstart, or refcnting as mentioned before. */ if (m->m_pkthdr.pf.delay > 0) { - DPRINTF(sc, "PF Delay Unsupported"); + DPRINTF(sc, "PF Delay Unsupported\n"); ret = EOPNOTSUPP; goto error; }