From db2dabf87cc051834474cb90deb4e29b362f1f4e Mon Sep 17 00:00:00 2001 From: Benno Rice Date: Fri, 1 Feb 2008 07:17:26 +0000 Subject: [PATCH] Band-aid recent commit by mav by replacing a variable in a CTR statement with the variable that appears as if it should've been there. Pointy hat to: mav Not tested either by: benno --- sys/netgraph/ng_pppoe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/netgraph/ng_pppoe.c b/sys/netgraph/ng_pppoe.c index 7c6807d4f6a..f8edf4936aa 100644 --- a/sys/netgraph/ng_pppoe.c +++ b/sys/netgraph/ng_pppoe.c @@ -600,7 +600,7 @@ pppoe_findsession(priv_p privp, const struct pppoe_full_hdr *wh) } } mtx_unlock(&privp->sesshash[hash].mtx); - CTR3(KTR_NET, "%20s: matched %p for %d", __func__, hook, session); + CTR3(KTR_NET, "%20s: matched %p for %d", __func__, sp, session); return (sp); }