diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-13 15:16:38 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2014-04-13 15:16:38 +0000 |
commit | 7beea9a356f8a5b214ed72826b421519e188cf83 (patch) | |
tree | 1654953a562a6aec0607025fe139d685b54de924 /lib/libssl/test | |
parent | 74d6e918c3b3e5eaeab31b3c7591dcf4995098f8 (diff) |
Import OpenSSL 1.0.1g
Diffstat (limited to 'lib/libssl/test')
-rw-r--r-- | lib/libssl/test/cms-test.pl | 4 |
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 ); |