crypto/tls/generate_cert.go: fix misspelling of O_CREATE.
Fixes #1888. R=ken CC=golang-dev https://golang.org/cl/4515148
This commit is contained in:
parent
3bdd4f3140
commit
1b7f4ea6c3
@ -59,7 +59,7 @@ func main() {
|
||||
certOut.Close()
|
||||
log.Print("written cert.pem\n")
|
||||
|
||||
keyOut, err := os.OpenFile("key.pem", os.O_WRONLY|os.O_CREAT|os.O_TRUNC, 0600)
|
||||
keyOut, err := os.OpenFile("key.pem", os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
|
||||
if err != nil {
|
||||
log.Print("failed to open key.pem for writing:", err)
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user