aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-03-16 19:07:32 +0000
committerGuy Harris <guy@alum.mit.edu>2005-03-16 19:07:32 +0000
commitad555d7c60ef16b82856e48dca4e18cc950c7abb (patch)
treedaf4542c7b1df947dcbf3c37e73e492019d52bfa
parent6bf27da8ce23b7cd473ef1f5473f76e601e4099c (diff)
Fix a typo in a comment, and get rid of some unused variables, to
squelch compiler warnings. svn path=/trunk/; revision=13771
-rw-r--r--epan/dissectors/packet-uma.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/epan/dissectors/packet-uma.c b/epan/dissectors/packet-uma.c
index c645dd0f5d..49e775d29c 100644
--- a/epan/dissectors/packet-uma.c
+++ b/epan/dissectors/packet-uma.c
@@ -539,7 +539,7 @@ static const value_string channel_vals[] = {
{ 0, NULL }
};
-/*RI, Reset Indicator (octet 3)*7
+/*RI, Reset Indicator (octet 3) */
/*CHANNEL (octet 3) */
static const value_string RI_vals[] = {
{ 0, "The flow control condition continues to exist"},
@@ -1016,7 +1016,6 @@ static int
dissect_uma(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
{
int offset = 0;
- int toc_offset = 0;
guint8 octet, pd;
guint16 msg_len;
@@ -1094,7 +1093,6 @@ proto_reg_handoff_uma(void)
{
static int Initialized=FALSE;
static int TcpPort1=0;
- static int uma_prefs_initialized = FALSE;
if (!Initialized) {
uma_tcp_handle = new_create_dissector_handle(dissect_uma, proto_uma);