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-icq.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-icq.c')
-rw-r--r-- | packet-icq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-icq.c b/packet-icq.c index 985de3db32..25bafa7ba0 100644 --- a/packet-icq.c +++ b/packet-icq.c @@ -1,7 +1,7 @@ /* packet-icq.c * Routines for ICQ packet disassembly * - * $Id: packet-icq.c,v 1.43 2002/05/02 10:53:03 guy Exp $ + * $Id: packet-icq.c,v 1.44 2002/06/04 07:03:44 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -1837,7 +1837,7 @@ dissect_icqv5Client(tvbuff_t *tvb, tvb_set_child_real_data_tvbuff(tvb, decr_tvb); /* Add the decrypted data to the data source list. */ - add_new_data_source(pinfo->fd, decr_tvb, "Decrypted"); + add_new_data_source(pinfo, decr_tvb, "Decrypted"); cmd = tvb_get_letohs(decr_tvb, ICQ5_CL_CMD); |