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-tkn4int.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-tkn4int.c')
-rw-r--r-- | epan/dissectors/packet-dcerpc-tkn4int.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-dcerpc-tkn4int.c b/epan/dissectors/packet-dcerpc-tkn4int.c index 1b511403..694d1556 100644 --- a/epan/dissectors/packet-dcerpc-tkn4int.c +++ b/epan/dissectors/packet-dcerpc-tkn4int.c @@ -21,18 +21,18 @@ void proto_register_tkn4int (void); void proto_reg_handoff_tkn4int (void); -static int proto_tkn4int = -1; -static int hf_tkn4int_opnum = -1; +static int proto_tkn4int; +static int hf_tkn4int_opnum; -static gint ett_tkn4int = -1; +static int ett_tkn4int; static e_guid_t uuid_tkn4int = { 0x4d37f2dd, 0xed96, 0x0000, { 0x02, 0xc0, 0x37, 0xcf, 0x1e, 0x00, 0x00, 0x00 } }; -static guint16 ver_tkn4int = 4; +static uint16_t ver_tkn4int = 4; -static dcerpc_sub_dissector tkn4int_dissectors[] = { +static const dcerpc_sub_dissector tkn4int_dissectors[] = { { 0, "Probe", NULL, NULL}, { 1, "InitTokenState", NULL, NULL}, { 2, "TokenRevoke", NULL, NULL}, @@ -55,7 +55,7 @@ proto_register_tkn4int (void) NULL, 0x0, NULL, HFILL }} }; - static gint *ett[] = { + static int *ett[] = { &ett_tkn4int, }; proto_tkn4int = proto_register_protocol ("DCE DFS Token Server", "TKN4Int", "tkn4int"); |