aboutsummaryrefslogtreecommitdiff
path: root/sys/netgraph/netgraph.h
diff options
context:
space:
mode:
authorArchie Cobbs <archie@FreeBSD.org>2000-05-01 23:34:15 +0000
committerArchie Cobbs <archie@FreeBSD.org>2000-05-01 23:34:15 +0000
commitdce9390ed0d28e88c169c883dd391e65170de968 (patch)
tree741791709f9a7530cdc4b3a12f257cbb0dceacf3 /sys/netgraph/netgraph.h
parentb90c94d658d443e50581ff77b365e74bed05cb3a (diff)
Notes
Diffstat (limited to 'sys/netgraph/netgraph.h')
-rw-r--r--sys/netgraph/netgraph.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/netgraph/netgraph.h b/sys/netgraph/netgraph.h
index 25c2d28226d6..7b044095415a 100644
--- a/sys/netgraph/netgraph.h
+++ b/sys/netgraph/netgraph.h
@@ -199,11 +199,11 @@ struct ng_type {
#define NG_SEND_DATA_RET(error, hook, m, a) \
do { \
- struct mbuf *ret_m = NULL; \
- meta_p ret_meta = NULL; \
- (error) = ng_send_dataq((hook), (m), (a), &ret_m, &ret_meta);\
- (m) = ret_m; \
- (a) = ret_meta; \
+ struct mbuf *rm = NULL; \
+ meta_p ra = NULL; \
+ (error) = ng_send_data((hook), (m), (a), &rm, &ra); \
+ (m) = rm; \
+ (a) = ra; \
} while (0)
/* Free metadata */