arp(8): fix a typo in error message for -s/-S

Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/1214
This commit is contained in:
Lexi Winter 2024-05-04 09:02:39 -06:00 committed by Warner Losh
parent 9a62cdc013
commit 0ad9b235e1

View File

@ -385,7 +385,7 @@ set_nl(uint32_t ifindex, struct sockaddr_in *dst, struct sockaddr_dl *sdl, char
ifindex = fix_ifindex(&ss, ifindex, dst->sin_addr);
if (ifindex == 0) {
xo_warnx("delete: cannot locate %s", host);
xo_warnx("set: cannot locate %s", host);
snl_free(&ss);
return (0);
}