summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1998-05-23 08:03:40 +0000
committerphk <phk@FreeBSD.org>1998-05-23 08:03:40 +0000
commitb76b64615436a954f7dc5ea3ddcc922b2d8d2301 (patch)
tree97bf0c1cffaa8528d11e20cdae1dd085962e7b6d /sys
parent69aa2593daa8f78b22f64a7b54918f5e850e3038 (diff)
downloadFreeBSD-src-b76b64615436a954f7dc5ea3ddcc922b2d8d2301.zip
FreeBSD-src-b76b64615436a954f7dc5ea3ddcc922b2d8d2301.tar.gz
Get more details on the "arpresolve: can't allocate llinfo" bogon.
PR: 2570 Reviewed by: phk Submitted by: fenner
Diffstat (limited to 'sys')
-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 eeda5d9..ddd721ab 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);
}
OpenPOWER on IntegriCloud