You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-commits@perl.apache.org by jo...@apache.org on 2018/10/10 12:26:04 UTC

svn commit: r1843437 - /perl/Apache-Test/trunk/lib/Apache/TestConfig.pm

Author: jorton
Date: Wed Oct 10 12:26:04 2018
New Revision: 1843437

URL: http://svn.apache.org/viewvc?rev=1843437&view=rev
Log:
Allow -sslproto to override the default again.

Modified:
    perl/Apache-Test/trunk/lib/Apache/TestConfig.pm

Modified: perl/Apache-Test/trunk/lib/Apache/TestConfig.pm
URL: http://svn.apache.org/viewvc/perl/Apache-Test/trunk/lib/Apache/TestConfig.pm?rev=1843437&r1=1843436&r2=1843437&view=diff
==============================================================================
--- perl/Apache-Test/trunk/lib/Apache/TestConfig.pm (original)
+++ perl/Apache-Test/trunk/lib/Apache/TestConfig.pm Wed Oct 10 12:26:04 2018
@@ -304,7 +304,7 @@ sub new {
         $vars->{sslproto} = Apache::TestSSLCA::sslproto();
     }
     else {
-        $vars->{sslproto} = 'all';
+        $vars->{sslproto} ||= 'all';
     }
 
     $vars->{t_logs}       ||= catfile $vars->{serverroot}, 'logs';