diff options
author | Anders Broman <anders.broman@ericsson.com> | 2004-06-29 20:29:57 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2004-06-29 20:29:57 +0000 |
commit | 5bb9c6f42fb71d7738962fa2d66007d624726257 (patch) | |
tree | fb55a4e504c33152896dd68b5de768b58ec34bb2 /packet-rtsp.c | |
parent | 891608f72e84e9035c11f9cfc79bf20528bb1eb1 (diff) | |
download | wireshark-5bb9c6f42fb71d7738962fa2d66007d624726257.tar.gz wireshark-5bb9c6f42fb71d7738962fa2d66007d624726257.tar.bz2 wireshark-5bb9c6f42fb71d7738962fa2d66007d624726257.zip |
From Martin Mathieson:
packet-rtp.c packet_rtsp.cand packet-rtcp.c
------------------------------------------
Make sure that the RTP RTSP and RTCP dissectors show the setup frame
corresponding to the destination address
svn path=/trunk/; revision=11270
Diffstat (limited to 'packet-rtsp.c')
-rw-r--r-- | packet-rtsp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-rtsp.c b/packet-rtsp.c index 06c9bc4013..8b824eaddb 100644 --- a/packet-rtsp.c +++ b/packet-rtsp.c @@ -4,7 +4,7 @@ * Jason Lango <jal@netapp.com> * Liberally copied from packet-http.c, by Guy Harris <guy@alum.mit.edu> * - * $Id: packet-rtsp.c,v 1.65 2004/06/15 18:26:08 etxrab Exp $ + * $Id: packet-rtsp.c,v 1.66 2004/06/29 20:29:57 etxrab Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -444,13 +444,13 @@ rtsp_create_conversation(packet_info *pinfo, const guchar *line_begin, */ SET_ADDRESS(&null_addr, pinfo->src.type, 0, NULL); - rtp_add_address(pinfo, (char *)&pinfo->dst, c_data_port, s_data_port, + rtp_add_address(pinfo, (char *)pinfo->dst.data, c_data_port, s_data_port, "RTSP", pinfo->fd->num); if (!c_mon_port) return; - rtcp_add_address(pinfo, (char *)&pinfo->dst, c_mon_port, s_mon_port, + rtcp_add_address(pinfo, (char *)pinfo->dst.data, c_mon_port, s_mon_port, "RTSP", pinfo->fd->num); } |