summaryrefslogtreecommitdiffstats
path: root/lib/libssl/test
diff options
context:
space:
mode:
authormiod <miod@openbsd.org>2014-04-13 15:16:32 +0000
committermiod <miod@openbsd.org>2014-04-13 15:16:32 +0000
commit9eac5592c81620ead272fa71be9a79e0e24176fe (patch)
treebe26e8653cf5d8c7b93aa32a3203924090fc58ac /lib/libssl/test
parentFix a badly worded debug message that implied the entire machine was going (diff)
downloadwireguard-openbsd-9eac5592c81620ead272fa71be9a79e0e24176fe.tar.xz
wireguard-openbsd-9eac5592c81620ead272fa71be9a79e0e24176fe.zip
Import OpenSSL 1.0.1g
Diffstat (limited to 'lib/libssl/test')
-rw-r--r--lib/libssl/test/cms-test.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libssl/test/cms-test.pl b/lib/libssl/test/cms-test.pl
index c938bcf00df..dfef799be2f 100644
--- a/lib/libssl/test/cms-test.pl
+++ b/lib/libssl/test/cms-test.pl
@@ -415,8 +415,10 @@ sub run_smime_tests {
}
sub cmp_files {
+ use FileHandle;
my ( $f1, $f2 ) = @_;
- my ( $fp1, $fp2 );
+ my $fp1 = FileHandle->new();
+ my $fp2 = FileHandle->new();
my ( $rd1, $rd2 );