From 30877010085b6ffef85a8fee29aa8f41ba6e2d41 Mon Sep 17 00:00:00 2001 From: Ian Young Date: Sun, 29 Dec 2013 18:50:21 +0000 Subject: [PATCH] Move everything related to UKf trust roots into mdx/uk. --- build/check_embedded.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/check_embedded.pl b/build/check_embedded.pl index 2b905a75..0b1a6c44 100755 --- a/build/check_embedded.pl +++ b/build/check_embedded.pl @@ -365,7 +365,7 @@ sub comment { # my $error = ''; $serverOK = 1; - $cmd = "openssl verify -CAfile authorities.pem -purpose sslserver $filename |"; + $cmd = "openssl verify -CAfile ../mdx/uk/authorities.pem -purpose sslserver $filename |"; open(SSL, $cmd) || die "could not open openssl subcommand 2"; while () { chomp; @@ -376,7 +376,7 @@ sub comment { } close SSL; $clientOK = 1; - $cmd = "openssl verify -CAfile authorities.pem -purpose sslclient $filename |"; + $cmd = "openssl verify -CAfile ../mdx/uk/authorities.pem -purpose sslclient $filename |"; open(SSL, $cmd) || die "could not open openssl subcommand 3"; while () { chomp;