aboutsummaryrefslogtreecommitdiffstats
path: root/packet-radius.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-06-04 07:03:57 +0000
committerGuy Harris <guy@alum.mit.edu>2002-06-04 07:03:57 +0000
commit392a7dfc04475dd440efa70ea4b786a96f282c19 (patch)
tree98dc21a0a82fcaed9cd383f9659adc50973f242a /packet-radius.c
parent1155a2fb437b43521367b7c75b9b5cb0a6a2de72 (diff)
Get rid of the "data_src" member of the "frame_data" structure; put it
in the "packet_info" structure instead, as we don't need a pointer for every single frame in the capture file, just for each frame for which we currently have an open "epan_dissect_t". svn path=/trunk/; revision=5614
Diffstat (limited to 'packet-radius.c')
-rw-r--r--packet-radius.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-radius.c b/packet-radius.c
index 648a1644f0..084b926665 100644
--- a/packet-radius.c
+++ b/packet-radius.c
@@ -4,7 +4,7 @@
*
* RFC 2865, RFC 2866, RFC 2867, RFC 2868, RFC 2869
*
- * $Id: packet-radius.c,v 1.62 2002/05/24 03:21:23 guy Exp $
+ * $Id: packet-radius.c,v 1.63 2002/06/04 07:03:45 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -2611,7 +2611,7 @@ dissect_attribute_value_pairs(tvbuff_t *tvb, int offset,proto_tree *tree,
tvb_set_child_real_data_tvbuff(tvb, next_tvb);
/* Add the defragmented data to the data source list. */
- add_new_data_source(pinfo->fd, next_tvb, "Reassembled EAP");
+ add_new_data_source(pinfo, next_tvb, "Reassembled EAP");
/* Now dissect it. */
call_dissector(eap_fragment_handle, next_tvb, pinfo, eap_tree);