summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcerpc-ftserver.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:53 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-09-19 04:14:53 +0000
commita86c5f7cae7ec9a3398300555a0b644689d946a1 (patch)
tree39fe4b107c71174fd1e8a8ceb9a4d2aa14116248 /epan/dissectors/packet-dcerpc-ftserver.c
parentReleasing progress-linux version 4.2.6-1~progress7.99u1. (diff)
downloadwireshark-a86c5f7cae7ec9a3398300555a0b644689d946a1.tar.xz
wireshark-a86c5f7cae7ec9a3398300555a0b644689d946a1.zip
Merging upstream version 4.4.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--epan/dissectors/packet-dcerpc-ftserver.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-dcerpc-ftserver.c b/epan/dissectors/packet-dcerpc-ftserver.c
index 05415462..70cfdfbc 100644
--- a/epan/dissectors/packet-dcerpc-ftserver.c
+++ b/epan/dissectors/packet-dcerpc-ftserver.c
@@ -21,19 +21,19 @@
void proto_register_ftserver (void);
void proto_reg_handoff_ftserver (void);
-static int proto_ftserver = -1;
-static int hf_ftserver_opnum = -1;
+static int proto_ftserver;
+static int hf_ftserver_opnum;
-static gint ett_ftserver = -1;
+static int ett_ftserver;
static e_guid_t uuid_ftserver = { 0x4d37f2dd, 0xed43, 0x0004, { 0x02, 0xc0, 0x37, 0xcf, 0x1e, 0x00, 0x00, 0x00 } };
-static guint16 ver_ftserver = 4;
+static uint16_t ver_ftserver = 4;
-static dcerpc_sub_dissector ftserver_dissectors[] = {
+static const dcerpc_sub_dissector ftserver_dissectors[] = {
{ 0, "CreateTrans", NULL, NULL },
{ 1, "AbortTrans", NULL, NULL },
{ 2, "DeleteTrans", NULL, NULL },
@@ -67,7 +67,7 @@ proto_register_ftserver (void)
NULL, 0x0, NULL, HFILL }}
};
- static gint *ett[] = {
+ static int *ett[] = {
&ett_ftserver,
};
proto_ftserver = proto_register_protocol ("FTServer Operations", "FTSERVER", "ftserver");