aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rtsp.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-04-21 01:52:35 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-04-21 01:52:35 +0000
commit18ffd6503d783a5636aa3dbf458a910e507c00c9 (patch)
treee7f0521500140d3dbad8f4ec8d25de2bbe9daba7 /packet-rtsp.c
parentfe26251b48e0845700395d76afe7b62da921960a (diff)
8-bit character paranoia.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1886 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-rtsp.c')
-rw-r--r--packet-rtsp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-rtsp.c b/packet-rtsp.c
index 7c3c455d56..d0f67d28d1 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.10 2000/04/21 01:45:57 guy Exp $
+ * $Id: packet-rtsp.c,v 1.11 2000/04/21 01:52:35 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -94,8 +94,8 @@ static void
rtsp_create_conversation(const u_char *trans_begin, const u_char *trans_end)
{
conversation_t *conv;
- char tbuf[256];
- char *tmp;
+ u_char tbuf[256];
+ u_char *tmp;
int c_data_port, c_mon_port;
int s_data_port, s_mon_port;