dougm 01/12/17 15:26:19
Modified: perl-framework/Apache-Test/lib/Apache TestConfig.pm
Log:
logic error: s/unless/if/; so we do not attempt to use openssl if
t/conf/ssl/ca already exists
Revision Changes Path
1.107 +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.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- TestConfig.pm 2001/12/14 18:40:43 1.106
+++ TestConfig.pm 2001/12/17 23:26:19 1.107
@@ -968,7 +968,7 @@
require Apache::TestSSLCA;
my $ca = $self->{vars}->{sslca};
- return 0 unless $ca and -d dirname($ca); #t/conf/ssl
+ return 0 if $ca and -d dirname($ca); #t/conf/ssl
if ($check) {
my $openssl = Apache::TestSSLCA::openssl();