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-smb-pipe.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-smb-pipe.c')
-rw-r--r-- | packet-smb-pipe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-smb-pipe.c b/packet-smb-pipe.c index 03af7c8728..80827dff0d 100644 --- a/packet-smb-pipe.c +++ b/packet-smb-pipe.c @@ -8,7 +8,7 @@ XXX Fixme : shouldnt show [malformed frame] for long packets * significant rewrite to tvbuffify the dissector, Ronnie Sahlberg and * Guy Harris 2001 * - * $Id: packet-smb-pipe.c,v 1.77 2002/05/24 10:57:37 guy Exp $ + * $Id: packet-smb-pipe.c,v 1.78 2002/06/04 07:03:45 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -3170,7 +3170,7 @@ dissect_pipe_dcerpc(tvbuff_t *d_tvb, packet_info *pinfo, proto_tree *parent_tree new_tvb = tvb_new_real_data(fd_head->data, fd_head->datalen, fd_head->datalen); tvb_set_child_real_data_tvbuff(d_tvb, new_tvb); - add_new_data_source(pinfo->fd, new_tvb, + add_new_data_source(pinfo, new_tvb, "DCERPC over SMB"); pinfo->fragmented=FALSE; |