dougm 02/04/02 13:06:29
Modified: perl-framework/t/ssl http.t
Log:
use ssl_module_name rather than mod_ssl
Revision Changes Path
1.9 +2 -1 httpd-test/perl-framework/t/ssl/http.t
Index: http.t
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/t/ssl/http.t,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- http.t 2 Apr 2002 07:20:34 -0000 1.8
+++ http.t 2 Apr 2002 21:06:29 -0000 1.9
@@ -20,7 +20,8 @@
plan tests => 1, @todo;
my $config = Apache::Test::config();
-my $hostport = $config->{vhosts}->{mod_ssl}->{hostport};
+my $ssl_module = $config->{vars}->{ssl_module_name};
+my $hostport = $config->{vhosts}->{$ssl_module}->{hostport};
my $rurl = "http://$hostport$url";
my $res = GET($rurl);