missing newline on error messages
This commit is contained in:
parent
8a9e69626f
commit
d0a5f75405
2
main.go
2
main.go
@ -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()
|
||||||
|
Loading…
Reference in New Issue
Block a user