summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-cvspserver.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-cvspserver.c')
-rw-r--r--epan/dissectors/packet-cvspserver.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/epan/dissectors/packet-cvspserver.c b/epan/dissectors/packet-cvspserver.c
index efac81e8..d5f1c14d 100644
--- a/epan/dissectors/packet-cvspserver.c
+++ b/epan/dissectors/packet-cvspserver.c
@@ -20,20 +20,20 @@ void proto_reg_handoff_cvspserver(void);
static dissector_handle_t cvspserver_handle;
-static int proto_cvspserver = -1;
+static int proto_cvspserver;
-static int hf_cvspserver_data = -1;
+static int hf_cvspserver_data;
-static gint ett_cvspserver = -1;
+static int ett_cvspserver;
static int
dissect_cvspserver(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* dissector_data _U_)
{
proto_tree* cvspserver_tree;
proto_item* ti;
- gint length;
- gint next_offset, offset;
- guint lines = 0;
+ int length;
+ int next_offset, offset;
+ unsigned lines = 0;
col_set_str(pinfo->cinfo, COL_PROTOCOL, "CVSPSERVER");
col_clear(pinfo->cinfo, COL_INFO);
@@ -67,7 +67,7 @@ proto_register_cvspserver(void)
NULL, 0, NULL, HFILL }}
};
- static gint *ett[] = {
+ static int *ett[] = {
&ett_cvspserver
};