diff options
author | 1999-11-10 18:48:47 +0000 | |
---|---|---|
committer | 1999-11-10 18:48:47 +0000 | |
commit | 4522e170a1168df5f526786dca24d45dbf5615fb (patch) | |
tree | a48a0f2ae6b4f4fc504c490e6380b03503c85466 | |
parent | include syscallnames only if compiling w/ SYSCALL_DEBUG. (diff) | |
download | wireguard-openbsd-4522e170a1168df5f526786dca24d45dbf5615fb.tar.xz wireguard-openbsd-4522e170a1168df5f526786dca24d45dbf5615fb.zip |
Fix typo in printf
-rw-r--r-- | sys/netinet/if_ether.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index a699cbf0fab..15a70a7e7ee 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ether.c,v 1.18 1999/08/08 02:42:59 niklas Exp $ */ +/* $OpenBSD: if_ether.c,v 1.19 1999/11/10 18:48:47 chris Exp $ */ /* $NetBSD: if_ether.c,v 1.31 1996/05/11 12:59:58 mycroft Exp $ */ /* @@ -506,7 +506,7 @@ in_arpinput(m) goto out; } else if (rt->rt_ifp != &ac->ac_if) { log(LOG_WARNING, - "arp: attemt to overwrite entry for %s " + "arp: attempt to overwrite entry for %s " "on %s by %s on %s\n", inet_ntoa(isaddr), rt->rt_ifp->if_xname, ether_sprintf(ea->arp_sha), |