dougm 01/12/17 15:33:15
Modified: perl-framework/Apache-Test/lib/Apache TestConfig.pm
Log:
check proper directory when looking to see if sslca already exists
Revision Changes Path
1.108 +1 -1
httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm
Index: TestConfig.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -r1.107 -r1.108
--- TestConfig.pm 2001/12/17 23:26:19 1.107
+++ TestConfig.pm 2001/12/17 23:33:15 1.108
@@ -968,7 +968,7 @@
require Apache::TestSSLCA;
my $ca = $self->{vars}->{sslca};
- return 0 if $ca and -d dirname($ca); #t/conf/ssl
+ return 0 if $ca and -d $ca; #t/conf/ssl/ca
if ($check) {
my $openssl = Apache::TestSSLCA::openssl();