From 956950bb1391523402dd3bfeaa37edf7b7dffa11 Mon Sep 17 00:00:00 2001 From: Adam Langley Date: Fri, 5 Feb 2010 05:39:49 -0500 Subject: [PATCH] crypto/tls: typo fix R=rsc CC=golang-dev https://golang.org/cl/201047 --- ca_set.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ca_set.go b/ca_set.go index 00f6a87..c11539c 100644 --- a/ca_set.go +++ b/ca_set.go @@ -23,7 +23,7 @@ func NewCASet() *CASet { } func nameToKey(name *x509.Name) string { - return name.Country + "/" + name.OrganizationalUnit + "/" + name.OrganizationalUnit + "/" + name.CommonName + return name.Country + "/" + name.Organization + "/" + name.OrganizationalUnit + "/" + name.CommonName } // FindParent attempts to find the certificate in s which signs the given