diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-01-13 02:28:27 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-01-13 02:28:27 +0000 |
commit | daf302579a8b967a88bdeaead0a31cc83f59c6dd (patch) | |
tree | 10eb5639f100df6966967defce86d03c1ffa5559 /packet-rtsp.c | |
parent | 6c9d2c3d67ed596da61ea2392359897271cd668a (diff) | |
download | wireshark-daf302579a8b967a88bdeaead0a31cc83f59c6dd.tar.gz wireshark-daf302579a8b967a88bdeaead0a31cc83f59c6dd.tar.bz2 wireshark-daf302579a8b967a88bdeaead0a31cc83f59c6dd.zip |
Make top-level items for interleaved RTSP packets be items for the RTSP
protocol, as well as top-level items for regular RTSP, so that the
filter expression "rtsp" matches both of them.
svn path=/trunk/; revision=2887
Diffstat (limited to 'packet-rtsp.c')
-rw-r--r-- | packet-rtsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-rtsp.c b/packet-rtsp.c index d82f2ed382..bd7015d80b 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.34 2001/01/11 20:14:24 guy Exp $ + * $Id: packet-rtsp.c,v 1.35 2001/01/13 02:28:27 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -96,7 +96,7 @@ dissect_rtspinterleaved(tvbuff_t *tvb, int offset, packet_info *pinfo, return -1; } - ti = proto_tree_add_text(tree, tvb, offset, 4, + ti = proto_tree_add_protocol_format(tree, proto_rtsp, tvb, offset, 4, "RTSP Interleaved Frame, Channel: 0x%02x, %u bytes", rf_chan, rf_len); rtspframe_tree = proto_item_add_subtree(ti, ett_rtspframe); |