diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:53 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:14:53 +0000 |
commit | a86c5f7cae7ec9a3398300555a0b644689d946a1 (patch) | |
tree | 39fe4b107c71174fd1e8a8ceb9a4d2aa14116248 /epan/dissectors/packet-dcerpc-rs_repmgr.c | |
parent | Releasing progress-linux version 4.2.6-1~progress7.99u1. (diff) | |
download | wireshark-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-rs_repmgr.c')
-rw-r--r-- | epan/dissectors/packet-dcerpc-rs_repmgr.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-dcerpc-rs_repmgr.c b/epan/dissectors/packet-dcerpc-rs_repmgr.c index fc4640d3..594bb985 100644 --- a/epan/dissectors/packet-dcerpc-rs_repmgr.c +++ b/epan/dissectors/packet-dcerpc-rs_repmgr.c @@ -21,19 +21,19 @@ void proto_register_rs_repmgr (void); void proto_reg_handoff_rs_repmgr (void); -static int proto_rs_repmgr = -1; -static int hf_rs_repmgr_opnum = -1; +static int proto_rs_repmgr; +static int hf_rs_repmgr_opnum; -static gint ett_rs_repmgr = -1; +static int ett_rs_repmgr; static e_guid_t uuid_rs_repmgr = { 0xb62dc198, 0xdfd4, 0x11ca, {0x94, 0x8f, 0x08, 0x00, 0x1e, 0x02, 0x59, 0x4c} }; -static guint16 ver_rs_repmgr = 2; +static uint16_t ver_rs_repmgr = 2; -static dcerpc_sub_dissector rs_repmgr_dissectors[] = { +static const dcerpc_sub_dissector rs_repmgr_dissectors[] = { {0, "get_info_and_creds", NULL, NULL}, {1, "init", NULL, NULL}, {2, "init_done", NULL, NULL}, @@ -55,7 +55,7 @@ proto_register_rs_repmgr (void) NULL, HFILL}}, }; - static gint *ett[] = { + static int *ett[] = { &ett_rs_repmgr, }; proto_rs_repmgr = |