commit | 8ab8312ac8477e95f7072dbf919df5227d3d6e85 | [log] [tgz] |
---|---|---|
author | Jonathan Pittman <jmpittman@google.com> | Thu Apr 26 17:13:49 2012 -0400 |
committer | Adam Langley <agl@golang.org> | Thu Apr 26 17:13:49 2012 -0400 |
tree | 0606ba9b0a52c77b0b016afeb2124b9e4d731a9e | |
parent | 0d3cfff99f4428b308d63d9386fec9cd86475faa [diff] [blame] |
go.crypto/ssh: prevent concurrent reads and concurrent writes over the same agent connection minor fix for v01 cert parsing when algo is not supported R=golang-dev, agl, dave CC=golang-dev https://golang.org/cl/6116052
diff --git a/ssh/certs.go b/ssh/certs.go index 107fd1a..40cf706 100644 --- a/ssh/certs.go +++ b/ssh/certs.go
@@ -78,6 +78,7 @@ } cert.Key = dsaPubKey default: + ok = false return }