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_prop_acl.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_prop_acl.c')
-rw-r--r-- | epan/dissectors/packet-dcerpc-rs_prop_acl.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-dcerpc-rs_prop_acl.c b/epan/dissectors/packet-dcerpc-rs_prop_acl.c index 9b6e2709..ca33e87f 100644 --- a/epan/dissectors/packet-dcerpc-rs_prop_acl.c +++ b/epan/dissectors/packet-dcerpc-rs_prop_acl.c @@ -21,19 +21,19 @@ void proto_register_rs_prop_acl (void); void proto_reg_handoff_rs_prop_acl (void); -static int proto_rs_prop_acl = -1; -static int hf_rs_prop_acl_opnum = -1; +static int proto_rs_prop_acl; +static int hf_rs_prop_acl_opnum; -static gint ett_rs_prop_acl = -1; +static int ett_rs_prop_acl; static e_guid_t uuid_rs_prop_acl = { 0x591d87d0, 0xde64, 0x11ca, {0xa1, 0x1c, 0x08, 0x00, 0x1e, 0x03, 0x94, 0xc7} }; -static guint16 ver_rs_prop_acl = 1; +static uint16_t ver_rs_prop_acl = 1; -static dcerpc_sub_dissector rs_prop_acl_dissectors[] = { +static const dcerpc_sub_dissector rs_prop_acl_dissectors[] = { {0, "replace", NULL, NULL}, {0, NULL, NULL, NULL} }; @@ -47,7 +47,7 @@ proto_register_rs_prop_acl (void) NULL, HFILL}}, }; - static gint *ett[] = { + static int *ett[] = { &ett_rs_prop_acl, }; proto_rs_prop_acl = |