From 78c9487526ec1a9e0f65699b21a11223a032511b Mon Sep 17 00:00:00 2001 From: hloeffler Date: Tue, 20 Dec 2016 22:15:39 +0100 Subject: [PATCH 1/2] "Typo" to make GoLint happy --- wrap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrap.go b/wrap.go index 0b9b744..6da45ee 100644 --- a/wrap.go +++ b/wrap.go @@ -21,7 +21,7 @@ type Signer interface { gossh.Signer } -// ParseAuthorizedKeys parses a public key from an authorized_keys file used in +// ParseAuthorizedKey parses a public key from an authorized_keys file used in // OpenSSH according to the sshd(8) manual page. func ParseAuthorizedKey(in []byte) (out PublicKey, comment string, options []string, rest []byte, err error) { return gossh.ParseAuthorizedKey(in) From 7659e451339986cd88651224392a2c680f5dccc0 Mon Sep 17 00:00:00 2001 From: hloeffler Date: Tue, 20 Dec 2016 22:16:16 +0100 Subject: [PATCH 2/2] make GoLint happy... --- ssh.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ssh.go b/ssh.go index b6cbf60..acaf297 100644 --- a/ssh.go +++ b/ssh.go @@ -5,6 +5,7 @@ import ( "net" ) +// Signal as in RFC 4254 Section 6.10. type Signal string // POSIX signals as listed in RFC 4254 Section 6.10.