aboutsummaryrefslogtreecommitdiffstats
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
parentf41a3052121301e04c81480b508593be4c21d3fb (diff)
RTSP fixes, from nuf si.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3580 f5534014-38df-0310-8fa8-9805f1628bb7
-rw-r--r--AUTHORS4
-rw-r--r--doc/ethereal.pod.template1
-rw-r--r--packet-rtcp.c8
3 files changed, 9 insertions, 4 deletions
diff --git a/AUTHORS b/AUTHORS
index a05776d3c8..110115171d 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -700,6 +700,10 @@ Laurent Rabret <laurent.rabret@rd.francetelecom.fr> {
PAP support
}
+nuf si <gnippiks@yahoo.com> {
+ RTSP fixes
+}
+
Alain Magloire <alainm@rcsm.ece.mcgill.ca> was kind enough to
give his permission to use his version of snprintf.c.
diff --git a/doc/ethereal.pod.template b/doc/ethereal.pod.template
index 37d0bba6a0..8362e3998f 100644
--- a/doc/ethereal.pod.template
+++ b/doc/ethereal.pod.template
@@ -1126,6 +1126,7 @@ B<http://www.ethereal.com>.
Thierry Stagiaire <thierry.pelle@rd.francetelecom.fr>
Francisco Javier Cabello <fjcabello@vtools.es>
Laurent Rabret <laurent.rabret@rd.francetelecom.fr>
+ nuf si <gnippiks@yahoo.com>
Alain Magloire <alainm@rcsm.ece.mcgill.ca> was kind enough to give his
permission to use his version of snprintf.c.
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:
/*