You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2010/05/19 16:30:55 UTC

svn commit: r946202 - /httpd/test/framework/trunk/t/ssl/varlookup.t

Author: jorton
Date: Wed May 19 14:30:54 2010
New Revision: 946202

URL: http://svn.apache.org/viewvc?rev=946202&view=rev
Log:
- fix up CN in server DN as per r946166

Modified:
    httpd/test/framework/trunk/t/ssl/varlookup.t

Modified: httpd/test/framework/trunk/t/ssl/varlookup.t
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/ssl/varlookup.t?rev=946202&r1=946201&r2=946202&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/ssl/varlookup.t (original)
+++ httpd/test/framework/trunk/t/ssl/varlookup.t Wed May 19 14:30:54 2010
@@ -39,6 +39,7 @@ my %server_dn = dn('server');
 #turn into a pattern match: httpd-test/([-\w]+)
 #so we can test with different server keys/certs
 $server_dn{OU} =~ s:^([-\w]+/)([-\w]+)$:$1([-\\w]+):;
+$server_dn{CN} = $vars->{servername};
 
 my $server_dn = dn_oneline(\%server_dn);