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/ns_cert_exts | |
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/ns_cert_exts')
-rw-r--r-- | epan/dissectors/asn1/ns_cert_exts/packet-ns_cert_exts-template.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/epan/dissectors/asn1/ns_cert_exts/packet-ns_cert_exts-template.c b/epan/dissectors/asn1/ns_cert_exts/packet-ns_cert_exts-template.c index 14013c83..40d74dd9 100644 --- a/epan/dissectors/asn1/ns_cert_exts/packet-ns_cert_exts-template.c +++ b/epan/dissectors/asn1/ns_cert_exts/packet-ns_cert_exts-template.c @@ -12,6 +12,7 @@ #include "config.h" #include <epan/packet.h> +#include <wsutil/array.h> #include "packet-ber.h" @@ -23,7 +24,7 @@ void proto_register_ns_cert_exts(void); void proto_reg_handoff_ns_cert_exts(void); /* Initialize the protocol and registered fields */ -static int proto_ns_cert_exts = -1; +static int proto_ns_cert_exts; #include "packet-ns_cert_exts-hf.c" /* Initialize the subtree pointers */ @@ -41,7 +42,7 @@ void proto_register_ns_cert_exts(void) { }; /* List of subtrees */ - static gint *ett[] = { + static int *ett[] = { #include "packet-ns_cert_exts-ettarr.c" }; |