diff options
author | nectar <nectar@FreeBSD.org> | 2005-02-25 05:25:37 +0000 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 2005-02-25 05:25:37 +0000 |
commit | a55ec1447ad1b73694515ed74d03a045fdf79313 (patch) | |
tree | 534989e2bbfbb4f73c404082e74989050e1e0240 /crypto/openssl/perl/t/03-bio.t | |
parent | 402a1009de9e9494974bb1704fdc87f40de403c8 (diff) | |
download | FreeBSD-src-a55ec1447ad1b73694515ed74d03a045fdf79313.zip FreeBSD-src-a55ec1447ad1b73694515ed74d03a045fdf79313.tar.gz |
Clean up the OpenSSL vendor branch by removing files that are not
part of recent releases.
Diffstat (limited to 'crypto/openssl/perl/t/03-bio.t')
-rw-r--r-- | crypto/openssl/perl/t/03-bio.t | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/crypto/openssl/perl/t/03-bio.t b/crypto/openssl/perl/t/03-bio.t deleted file mode 100644 index e3ed7ed..0000000 --- a/crypto/openssl/perl/t/03-bio.t +++ /dev/null @@ -1,16 +0,0 @@ - -BEGIN { - $| = 1; - print "1..1\n"; -} -END { - print "not ok 1\n" unless $ok; -} - -use OpenSSL; -my $bio = OpenSSL::BIO::new("mem") || die; -undef $bio; - -$ok = 1; -print "ok 1\n"; - |