aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rx.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-11-03 00:58:52 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-11-03 00:58:52 +0000
commitf9ea99284f65179fc306501227548a315e752f61 (patch)
tree3d9cbe45f362244be62e2a96e427cc01b003c344 /packet-rx.c
parent070d5cab9419f06b70e495df831a62085575cb60 (diff)
Rename the "private" member of the "packet_info" structure to
"private_data", to keep C++ compilers from getting heartburn. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4130 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-rx.c')
-rw-r--r--packet-rx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-rx.c b/packet-rx.c
index 147adc51ec..cdb332de15 100644
--- a/packet-rx.c
+++ b/packet-rx.c
@@ -4,7 +4,7 @@
* Based on routines from tcpdump patches by
* Ken Hornstein <kenh@cmf.nrl.navy.mil>
*
- * $Id: packet-rx.c,v 1.26 2001/09/14 07:10:05 guy Exp $
+ * $Id: packet-rx.c,v 1.27 2001/11/03 00:58:49 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -542,7 +542,7 @@ dissect_rx(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
break;
case RX_PACKET_TYPE_DATA: {
tvbuff_t *next_tvb;
- pinfo->private = &rxinfo;
+ pinfo->private_data = &rxinfo;
next_tvb = tvb_new_subset(tvb, offset, -1, -1);
call_dissector(afs_handle, next_tvb, pinfo, parent_tree);
};