sm
/
fp
1
0
Bifurcation 0

missing newline on error messages

Cette révision appartient à :
Stephen McQuay 2016-09-13 09:29:52 -07:00
Parent 8a9e69626f
révision d0a5f75405
Signature inconnue de Gitea
ID de la clé GPG: 1ABF428F71BAFC3D
1 fichiers modifiés avec 1 ajouts et 1 suppressions

Voir le fichier

@ -16,7 +16,7 @@ func main() {
for s.Scan() {
pk, comment, _, _, err := ssh.ParseAuthorizedKey(s.Bytes())
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
}
hsh := sha256.New()