summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcerpc-icl_rpc.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-icl_rpc.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 'epan/dissectors/packet-dcerpc-icl_rpc.c')
-rw-r--r--epan/dissectors/packet-dcerpc-icl_rpc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-dcerpc-icl_rpc.c b/epan/dissectors/packet-dcerpc-icl_rpc.c
index 148fa7aa..b38142a4 100644
--- a/epan/dissectors/packet-dcerpc-icl_rpc.c
+++ b/epan/dissectors/packet-dcerpc-icl_rpc.c
@@ -20,18 +20,18 @@
void proto_register_icl_rpc (void);
void proto_reg_handoff_icl_rpc (void);
-static int proto_icl_rpc = -1;
-static int hf_icl_rpc_opnum = -1;
+static int proto_icl_rpc;
+static int hf_icl_rpc_opnum;
-static gint ett_icl_rpc = -1;
+static int ett_icl_rpc;
static e_guid_t uuid_icl_rpc = { 0x003fd39c, 0x7feb, 0x1bbc, { 0xbe, 0xbe, 0x02, 0x60, 0x8c, 0x2e, 0xf4, 0xd2 } };
-static guint16 ver_icl_rpc = 1;
+static uint16_t ver_icl_rpc = 1;
-static dcerpc_sub_dissector icl_rpc_dissectors[] = {
+static const dcerpc_sub_dissector icl_rpc_dissectors[] = {
{ 0, "DFSTRACE_GetSetInfo", NULL, NULL },
{ 1, "DFSTRACE_SetSetInfo", NULL, NULL },
{ 2, "DFSTRACE_GetLogInfo", NULL, NULL },
@@ -50,7 +50,7 @@ proto_register_icl_rpc (void)
{ "Operation", "icl_rpc.opnum", FT_UINT16, BASE_DEC, NULL, 0x0, NULL, HFILL }},
};
- static gint *ett[] = {
+ static int *ett[] = {
&ett_icl_rpc,
};
proto_icl_rpc = proto_register_protocol ("DCE DFS ICL RPC", "ICL_RPC", "icl_rpc");