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-ddtp.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-ddtp.c')
-rw-r--r-- | epan/dissectors/packet-ddtp.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/epan/dissectors/packet-ddtp.c b/epan/dissectors/packet-ddtp.c index 790f9dab..e59172f0 100644 --- a/epan/dissectors/packet-ddtp.c +++ b/epan/dissectors/packet-ddtp.c @@ -43,19 +43,19 @@ void proto_reg_handoff_ddtp (void); static dissector_handle_t ddtp_handle; -static int proto_ddtp = -1; -static int hf_ddtp_version = -1; -static int hf_ddtp_encrypt = -1; -static int hf_ddtp_hostid = -1; -static int hf_ddtp_msgtype = -1; -static int hf_ddtp_opcode = -1; -static int hf_ddtp_ipaddr = -1; -static int hf_ddtp_status = -1; -static int hf_ddtp_alive = -1; +static int proto_ddtp; +static int hf_ddtp_version; +static int hf_ddtp_encrypt; +static int hf_ddtp_hostid; +static int hf_ddtp_msgtype; +static int hf_ddtp_opcode; +static int hf_ddtp_ipaddr; +static int hf_ddtp_status; +static int hf_ddtp_alive; -static int ett_ddtp = -1; +static int ett_ddtp; -static expert_field ei_ddtp_msgtype = EI_INIT; +static expert_field ei_ddtp_msgtype; #define UDP_PORT_DDTP 1052 @@ -192,7 +192,7 @@ proto_register_ddtp(void) NULL, HFILL }}, }; - static gint *ett[] = { &ett_ddtp }; + static int *ett[] = { &ett_ddtp }; static ei_register_info ei[] = { { &ei_ddtp_msgtype, { "ddtp.msgtype.unknown", PI_PROTOCOL, PI_WARN, "Unknown type", EXPFILL }}, |