diff options
| author | Julian Elischer <julian@FreeBSD.org> | 1999-11-01 05:27:44 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 1999-11-01 05:27:44 +0000 |
| commit | a923d43a67d8eb029999575782e95a116a21a4fd (patch) | |
| tree | d186a32c1783cd8ac269908e74090d4de487d0f4 /sys/netgraph/ng_sample.c | |
| parent | 5b42dac8ecd7876aea90b48dcd0f96c170672e42 (diff) | |
Notes
Diffstat (limited to 'sys/netgraph/ng_sample.c')
| -rw-r--r-- | sys/netgraph/ng_sample.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netgraph/ng_sample.c b/sys/netgraph/ng_sample.c index cef19778f757..3376ad7c5abd 100644 --- a/sys/netgraph/ng_sample.c +++ b/sys/netgraph/ng_sample.c @@ -306,10 +306,10 @@ ng_xxx_rcvdata(hook_p hook, struct mbuf *m, meta_p meta) */ dlci = ((struct XXX_hookinfo *) hook->private)->dlci; if (dlci == 1023) { - ng_queue_data(hook->peer, m, meta); + return(ng_queue_data(hook->peer, m, meta)); } } - ng_xxx_rcvdataq(hook, m, meta); + return(ng_xxx_rcvdataq(hook, m, meta)); } /* |
