aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rtcp.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-06-20 04:45:52 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2001-06-20 04:45:52 +0000
commit37217be3f0dcf1ed4d51b08e7eba994208190207 (patch)
tree4c3de4fc1f41a355749bc94a0573aed1c1f0b83c /packet-rtcp.c
parentf41a3052121301e04c81480b508593be4c21d3fb (diff)
RTSP fixes, from nuf si.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3580 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-rtcp.c')
-rw-r--r--packet-rtcp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-rtcp.c b/packet-rtcp.c
index c708dfdaed..504d615b6f 100644
--- a/packet-rtcp.c
+++ b/packet-rtcp.c
@@ -1,6 +1,6 @@
/* packet-rtcp.c
*
- * $Id: packet-rtcp.c,v 1.16 2001/06/18 02:17:51 guy Exp $
+ * $Id: packet-rtcp.c,v 1.17 2001/06/20 04:45:51 guy Exp $
*
* Routines for RTCP dissection
* RTCP = Real-time Transport Control Protocol
@@ -760,15 +760,15 @@ dissect_rtcp( tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree )
/* Packet length in 32 bit words MINUS one, 16 bits */
proto_tree_add_uint( rtcp_tree, hf_rtcp_length, tvb, offset, 2, tvb_get_ntohs( tvb, offset ) );
offset += 2;
- dissect_rtcp_app( tvb, offset,
+ offset = dissect_rtcp_app( tvb, offset,
pinfo->fd, rtcp_tree, padding_set,
packet_length - 4 );
break;
case RTCP_FIR:
- dissect_rtcp_fir( tvb, offset, pinfo->fd, rtcp_tree );
+ offset = dissect_rtcp_fir( tvb, offset, pinfo->fd, rtcp_tree );
break;
case RTCP_NACK:
- dissect_rtcp_nack( tvb, offset, pinfo->fd, rtcp_tree );
+ offset = dissect_rtcp_nack( tvb, offset, pinfo->fd, rtcp_tree );
break;
default:
/*