missing newline on error messages

This commit is contained in:
Stephen McQuay 2016-09-13 09:29:52 -07:00
parent 8a9e69626f
commit d0a5f75405
No known key found for this signature in database
GPG Key ID: 1ABF428F71BAFC3D
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ func main() {
for s.Scan() { for s.Scan() {
pk, comment, _, _, err := ssh.ParseAuthorizedKey(s.Bytes()) pk, comment, _, _, err := ssh.ParseAuthorizedKey(s.Bytes())
if err != nil { if err != nil {
fmt.Fprintf(os.Stderr, "problem parsing pubkey from line %q: %v", s.Text(), err) fmt.Fprintf(os.Stderr, "problem parsing pubkey from line %q: %v\n", s.Text(), err)
continue continue
} }
hsh := sha256.New() hsh := sha256.New()