Browse Source

crypto/tls: typo fix

R=rsc
CC=golang-dev
https://golang.org/cl/201047
v1.2.3
Adam Langley 15 years ago
parent
commit
956950bb13
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ca_set.go

+ 1
- 1
ca_set.go View File

@@ -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


Loading…
Cancel
Save