diff options
author | Brian Somers <brian@FreeBSD.org> | 2004-09-05 01:46:52 +0000 |
---|---|---|
committer | Brian Somers <brian@FreeBSD.org> | 2004-09-05 01:46:52 +0000 |
commit | 057f1760a8171825b260dad27502f74ed5f69faf (patch) | |
tree | fb5af1860e245ef67196527d9ba46e5c9e284bf6 /usr.sbin/ppp/acf.c | |
parent | 3f61368f03d40932bd1fbe095678fd44de5c8490 (diff) | |
download | src-test2-057f1760a8171825b260dad27502f74ed5f69faf.tar.gz src-test2-057f1760a8171825b260dad27502f74ed5f69faf.zip |
Notes
Diffstat (limited to 'usr.sbin/ppp/acf.c')
-rw-r--r-- | usr.sbin/ppp/acf.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.sbin/ppp/acf.c b/usr.sbin/ppp/acf.c index 60e2de4b534a..6c3ec0583486 100644 --- a/usr.sbin/ppp/acf.c +++ b/usr.sbin/ppp/acf.c @@ -56,8 +56,8 @@ acf_WrapperOctets(struct lcp *lcp, u_short proto) } static struct mbuf * -acf_LayerPush(struct bundle *b, struct link *l, struct mbuf *bp, - int pri, u_short *proto) +acf_LayerPush(struct bundle *b __unused, struct link *l, struct mbuf *bp, + int pri __unused, u_short *proto) { const u_char cp[2] = { HDLC_ADDR, HDLC_UI }; @@ -70,7 +70,8 @@ acf_LayerPush(struct bundle *b, struct link *l, struct mbuf *bp, } static struct mbuf * -acf_LayerPull(struct bundle *b, struct link *l, struct mbuf *bp, u_short *proto) +acf_LayerPull(struct bundle *b __unused, struct link *l, struct mbuf *bp, + u_short *proto __unused) { struct physical *p = link2physical(l); u_char cp[2]; |