mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
(hopefully) last change -> return real opaque vec instead of any_vec
This commit is contained in:
parent
3f52eeacda
commit
d42d9bbc3f
1 changed files with 1 additions and 1 deletions
|
@ -209,7 +209,7 @@ function x509_verify%(certs: x509_opaque_vector, root_certs: table_string_of_str
|
||||||
}
|
}
|
||||||
|
|
||||||
int num_certs = sk_X509_num(chain);
|
int num_certs = sk_X509_num(chain);
|
||||||
chainVector = new VectorVal(internal_type("any_vec")->AsVectorType());
|
chainVector = new VectorVal(internal_type("x509_opaque_vector")->AsVectorType());
|
||||||
|
|
||||||
for ( int i = 0; i < num_certs; i++ )
|
for ( int i = 0; i < num_certs; i++ )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue