Skip to content

Commit

Permalink
Move everything related to UKf trust roots into mdx/uk.
Browse files Browse the repository at this point in the history
  • Loading branch information
iay committed Dec 29, 2013
1 parent 5d8ef98 commit 3087701
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/check_embedded.pl
Original file line number Diff line number Diff line change
Expand Up @@ -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 (<SSL>) {
chomp;
Expand All @@ -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 (<SSL>) {
chomp;
Expand Down

0 comments on commit 3087701

Please sign in to comment.