diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-06-04 07:03:57 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-06-04 07:03:57 +0000 |
commit | 392a7dfc04475dd440efa70ea4b786a96f282c19 (patch) | |
tree | 98dc21a0a82fcaed9cd383f9659adc50973f242a /packet-eap.c | |
parent | 1155a2fb437b43521367b7c75b9b5cb0a6a2de72 (diff) | |
download | wireshark-392a7dfc04475dd440efa70ea4b786a96f282c19.tar.gz wireshark-392a7dfc04475dd440efa70ea4b786a96f282c19.tar.bz2 wireshark-392a7dfc04475dd440efa70ea4b786a96f282c19.zip |
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-eap.c')
-rw-r--r-- | packet-eap.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/packet-eap.c b/packet-eap.c index 90bc638eba..ac72716ce6 100644 --- a/packet-eap.c +++ b/packet-eap.c @@ -2,7 +2,7 @@ * Routines for EAP Extensible Authentication Protocol dissection * RFC 2284 * - * $Id: packet-eap.c,v 1.24 2002/03/28 09:51:17 guy Exp $ + * $Id: packet-eap.c,v 1.25 2002/06/04 07:03:44 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -612,8 +612,7 @@ dissect_eap_data(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, fd_head->len, fd_head->len); tvb_set_child_real_data_tvbuff(tvb, next_tvb); - add_new_data_source(pinfo->fd, next_tvb, - "Reassembled EAP-TLS"); + add_new_data_source(pinfo, next_tvb, "Reassembled EAP-TLS"); pinfo->fragmented = FALSE; fi = proto_tree_add_item(eap_tree, hf_eaptls_fragments, |