Commit 5d827fac authored by Adam Langley's avatar Adam Langley

crypto/tls: typo fix

R=rsc
CC=golang-dev
https://golang.org/cl/201047
parent bc43cc3d
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment