fix conflicting types for ng_ing_rcvmsg() and ng_ing_rcvdata().

This commit is contained in:
Hellmuth Michaelis 2000-10-10 15:22:00 +00:00
parent 767200d2c6
commit 81f87bbcbe
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=66939

View File

@ -31,7 +31,7 @@
*
* $FreeBSD$
*
* last edit-date: [Thu Apr 27 13:33:18 2000]
* last edit-date: [Tue Oct 10 17:18:21 2000]
*
*---------------------------------------------------------------------------*/
@ -636,7 +636,7 @@ ng_ing_newhook(node_p node, hook_p hook, const char *name)
*---------------------------------------------------------------------------*/
static int
ng_ing_rcvmsg(node_p node, struct ng_mesg *msg, const char *retaddr,
struct ng_mesg **rptr)
struct ng_mesg **rptr, hook_p lasthook)
{
struct ing_softc *sc = node->private;
@ -751,7 +751,8 @@ ng_ing_rcvmsg(node_p node, struct ng_mesg *msg, const char *retaddr,
* get data from another node and transmit it out on a B-channel
*---------------------------------------------------------------------------*/
static int
ng_ing_rcvdata(hook_p hook, struct mbuf *m, meta_p meta)
ng_ing_rcvdata(hook_p hook, struct mbuf *m, meta_p meta,
struct mbuf **ret_m, meta_p *ret_meta)
{
struct ing_softc *sc = hook->node->private;
struct ifqueue *xmitq_p;