From 945aad9c62053c4a8e16b520f92d70e42ac6349d Mon Sep 17 00:00:00 2001 From: "Bjoern A. Zeeb" Date: Sat, 17 Nov 2018 16:13:09 +0000 Subject: [PATCH] Improve the comment for arpresolve_full() in if_ether.c. No functional changes. MFC after: 6 weeks --- sys/netinet/if_ether.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index 4673ccb4fa2c..10d5eb78a748 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -433,10 +433,10 @@ arprequest(struct ifnet *ifp, const struct in_addr *sip, /* * Resolve an IP address into an ethernet address - heavy version. * Used internally by arpresolve(). - * We have already checked than we can't use existing lle without - * modification so we have to acquire LLE_EXCLUSIVE lle lock. + * We have already checked that we can't use an existing lle without + * modification so we have to acquire an LLE_EXCLUSIVE lle lock. * - * On success, desten and flags are filled in and the function returns 0; + * On success, desten and pflags are filled in and the function returns 0; * If the packet must be held pending resolution, we return EWOULDBLOCK * On other errors, we return the corresponding error code. * Note that m_freem() handles NULL.