Deleted Added
full compact
39c39
< * $FreeBSD: head/sys/netgraph/ng_tee.c 129942 2004-06-01 13:15:32Z ru $
---
> * $FreeBSD: head/sys/netgraph/ng_tee.c 131155 2004-06-26 22:24:16Z julian $
294d293
< meta_p meta;
297d295
< meta = NGI_META(item); /* leave these owned by the item */
330c328
< /* Duplicate packet and meta info if requried */
---
> /* Duplicate packet if requried */
333d330
< meta_p meta2;
338,345d334
<
< /* Copy meta info */
< /* If we can't get a copy, tough.. */
< if (meta != NULL) {
< meta2 = ng_copy_meta(meta);
< } else
< meta2 = NULL;
<
349c338
< NG_SEND_DATA(error, dup->hook, m2, meta2);
---
> NG_SEND_DATA_ONLY(error, dup->hook, m2);