Skip to content

Commit

Permalink
Fix typo in error message of sshHostKeyChecker (#1294)
Browse files Browse the repository at this point in the history
  • Loading branch information
HouzuoGuo authored and richard-cox committed Oct 9, 2017
1 parent a77102d commit e805507
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/cf-app-ssh/backend/cf_websocket_app_ssh.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ func sshHostKeyChecker(fingerprint string) ssh.HostKeyCallback {
if fingerprint == ssh.FingerprintLegacyMD5(key) {
return nil
}
return errors.New("Host Kwey fingerprint is incorrect")
return errors.New("Host key fingerprint is incorrect")
}
}

Expand Down

0 comments on commit e805507

Please sign in to comment.