fix problem with #1879

This commit is contained in:
Unknwon 2015-11-02 14:01:19 -05:00
parent 92535c9df0
commit 75aab86a8d
5 changed files with 223 additions and 222 deletions

View file

@ -243,7 +243,7 @@ func CheckPublicKeyString(content string) (_ string, err error) {
}
keyType := strings.Trim(sshKeygenOutput[len(sshKeygenOutput)-1], " ()")
if minimumKeySize := setting.Service.MinimumKeySizes[keyType]; minimumKeySize == 0 {
return "", errors.New("sorry, unrecognized public key type")
return "", fmt.Errorf("unrecognized public key type: %s", keyType)
} else if keySize < minimumKeySize {
return "", fmt.Errorf("the minimum accepted size of a public key %s is %d", keyType, minimumKeySize)
}