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/asn1/pkixproxy | |
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/asn1/pkixproxy')
-rw-r--r-- | epan/dissectors/asn1/pkixproxy/packet-pkixproxy-template.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/epan/dissectors/asn1/pkixproxy/packet-pkixproxy-template.c b/epan/dissectors/asn1/pkixproxy/packet-pkixproxy-template.c index 99fb419b..209d3098 100644 --- a/epan/dissectors/asn1/pkixproxy/packet-pkixproxy-template.c +++ b/epan/dissectors/asn1/pkixproxy/packet-pkixproxy-template.c @@ -14,6 +14,7 @@ #include <epan/packet.h> #include <epan/oids.h> #include <epan/asn1.h> +#include <wsutil/array.h> #include "packet-ber.h" #include "packet-pkixproxy.h" @@ -26,7 +27,7 @@ void proto_register_pkixproxy(void); void proto_reg_handoff_pkixproxy(void); /* Initialize the protocol and registered fields */ -static int proto_pkixproxy = -1; +static int proto_pkixproxy; #include "packet-pkixproxy-hf.c" /* Initialize the subtree pointers */ @@ -44,7 +45,7 @@ void proto_register_pkixproxy(void) { }; /* List of subtrees */ - static gint *ett[] = { + static int *ett[] = { #include "packet-pkixproxy-ettarr.c" }; |