From 10c44d767d62520385401cbc710436b2cd210dcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Thu, 20 Nov 2014 17:30:37 +0100 Subject: [PATCH] Allow x509_crt_verify_child() in recursion.pl --- scripts/recursion.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/recursion.pl b/scripts/recursion.pl index d75a4ef44..2c39c1434 100755 --- a/scripts/recursion.pl +++ b/scripts/recursion.pl @@ -16,7 +16,8 @@ use open qw(:std utf8); # exclude functions that are ok: # - mpi_write_hlp: bounded by size of mpi, a compile-time constant -my $known_ok = qr/mpi_write_hlp/; +# - x509_crt_verify_child: bounded by POLARSSL_X509_MAX_INTERMEDIATE_CA +my $known_ok = qr/mpi_write_hlp|x509_crt_verify_child/; my $cur_name; my $inside;