summaryrefslogtreecommitdiff
path: root/sys/netinet/if_ether.c
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1998-05-23 08:03:40 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1998-05-23 08:03:40 +0000
commit245086a062d67a6ce8717bf9d1eb0d4c96f301e7 (patch)
tree1210e084fd107ff5b83d0883726bc1bc39794221 /sys/netinet/if_ether.c
parentb8c904234ad84fe3c1dfec5cbdc6336520197268 (diff)
Notes
Diffstat (limited to 'sys/netinet/if_ether.c')
-rw-r--r--sys/netinet/if_ether.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c
index eeda5d98af46..ddd721abfd20 100644
--- a/sys/netinet/if_ether.c
+++ b/sys/netinet/if_ether.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)if_ether.c 8.1 (Berkeley) 6/10/93
- * $Id: if_ether.c,v 1.43 1998/01/08 23:41:43 eivind Exp $
+ * $Id: if_ether.c,v 1.44 1998/03/30 09:52:40 phk Exp $
*/
/*
@@ -344,8 +344,9 @@ arpresolve(ac, rt, m, dst, desten, rt0)
rt = la->la_rt;
}
if (la == 0 || rt == 0) {
- log(LOG_DEBUG, "arpresolve: can't allocate llinfo for %s\n",
- inet_ntoa(SIN(dst)->sin_addr));
+ log(LOG_DEBUG, "arpresolve: can't allocate llinfo for %s%s%s\n",
+ inet_ntoa(SIN(dst)->sin_addr), la ? "la" : "",
+ rt ? "rt" : "");
m_freem(m);
return (0);
}