diff options
Diffstat (limited to 'openssl/test/cms-test.pl')
-rw-r--r-- | openssl/test/cms-test.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/openssl/test/cms-test.pl b/openssl/test/cms-test.pl index c938bcf00..dfef799be 100644 --- a/openssl/test/cms-test.pl +++ b/openssl/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 ); |