diff options
| author | Mikio Hara <mikioh.mikioh@gmail.com> | 2012-12-15 14:19:17 +0900 |
|---|---|---|
| committer | Mikio Hara <mikioh.mikioh@gmail.com> | 2012-12-15 14:19:17 +0900 |
| commit | eeef66c5287c304f8b2e04072263bb5edf2814a5 (patch) | |
| tree | 4795e9a9c52f64e6170ec926ec898fcdd2ee299b /ssh/client_auth.go | |
| parent | 54c65aebf48315c6bb0ffbf0384aabbce05c23c4 (diff) | |
| download | go-x-crypto-eeef66c5287c304f8b2e04072263bb5edf2814a5.tar.xz | |
go.crypto: gofmt -w -s
R=golang-dev, dave
CC=golang-dev
https://golang.org/cl/6948057
Diffstat (limited to 'ssh/client_auth.go')
| -rw-r--r-- | ssh/client_auth.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ssh/client_auth.go b/ssh/client_auth.go index 2422722..b0c41f6 100644 --- a/ssh/client_auth.go +++ b/ssh/client_auth.go @@ -57,7 +57,7 @@ func (c *ClientConn) authenticate(session []byte) error { } func keys(m map[string]bool) (s []string) { - for k, _ := range m { + for k := range m { s = append(s, k) } return |
