(hopefully) last change -> return real opaque vec instead of any_vec

This commit is contained in:
Bernhard Amann 2014-03-13 16:10:59 -07:00
parent 3f52eeacda
commit d42d9bbc3f

View file

@ -209,7 +209,7 @@ function x509_verify%(certs: x509_opaque_vector, root_certs: table_string_of_str
}
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++ )
{