cmd/stvanity: Use Go 1.3 compatible interface

GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/2998
This commit is contained in:
Jakob Borg 2016-04-20 08:16:42 +00:00
parent cb38213444
commit 4eb23a38b1
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ func generatePrefixed(prefix string, count *int64, found chan<- result, stop <-c
default:
}
derBytes, err := x509.CreateCertificate(rand.Reader, &template, &template, priv.Public(), priv)
derBytes, err := x509.CreateCertificate(rand.Reader, &template, &template, priv.PublicKey, priv)
if err != nil {
fmt.Println(err)
os.Exit(1)