diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2022-12-07 14:38:30 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2022-12-07 14:38:30 +0000 |
commit | 891ba3da7560de89d5dd9db8487fbd1396d857ef (patch) | |
tree | 18800787b2b19c5bb1bfd853a0f4a3507abe2d0f /sys/netinet/if_ether.c | |
parent | 928a80573a16594876e0997a8a62da878f2f790f (diff) |
Fix comment by splitting sentance in two. From kn@
Diffstat (limited to 'sys/netinet/if_ether.c')
-rw-r--r-- | sys/netinet/if_ether.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index b7b243b5634..6edb24bc6c0 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ether.c,v 1.251 2022/07/16 15:25:30 bluhm Exp $ */ +/* $OpenBSD: if_ether.c,v 1.252 2022/12/07 14:38:29 claudio Exp $ */ /* $NetBSD: if_ether.c,v 1.31 1996/05/11 12:59:58 mycroft Exp $ */ /* @@ -429,8 +429,8 @@ arpresolve(struct ifnet *ifp, struct rtentry *rt0, struct mbuf *m, /* * There is an arptab entry, but no ethernet address - * response yet. Insert mbuf in hold queue if below limit - * if above the limit free the queue without queuing the new packet. + * response yet. Insert mbuf in hold queue if below limit. + * If above the limit free the queue without queuing the new packet. */ if (atomic_inc_int_nv(&la_hold_total) <= LA_HOLD_TOTAL) { if (mq_push(&la->la_mq, m) != 0) |