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-newmail.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-newmail.c')
-rw-r--r-- | epan/dissectors/packet-newmail.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-newmail.c b/epan/dissectors/packet-newmail.c index 03eb3e8a..c997e8c9 100644 --- a/epan/dissectors/packet-newmail.c +++ b/epan/dissectors/packet-newmail.c @@ -17,11 +17,11 @@ void proto_register_newmail(void); void proto_reg_handoff_newmail(void); /* Initialize the protocol and registered fields */ -static int proto_newmail = -1; -static int hf_newmail_payload = -1; +static int proto_newmail; +static int hf_newmail_payload; /* Initialize the subtree pointers */ -static gint ett_newmail = -1; +static int ett_newmail; static dissector_handle_t newmail_handle; @@ -65,7 +65,7 @@ proto_register_newmail(void) }; /* Setup protocol subtree array */ - static gint *ett[] = { + static int *ett[] = { &ett_newmail, }; |