From: Adam Langley Date: Fri, 5 Feb 2010 10:39:49 +0000 (-0500) Subject: crypto/tls: typo fix X-Git-Tag: weekly.2010-02-17~80 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5d827fac39918005361fccc67b4339bcb7d19035;p=gostls13.git crypto/tls: typo fix R=rsc CC=golang-dev https://golang.org/cl/201047 --- diff --git a/src/pkg/crypto/tls/ca_set.go b/src/pkg/crypto/tls/ca_set.go index 00f6a87306..c11539c8b1 100644 --- a/src/pkg/crypto/tls/ca_set.go +++ b/src/pkg/crypto/tls/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