Respect SSH.KeygenPath option when calculating ssh key fingerprints (#27536)

Fixes #27535
This commit is contained in:
Sebastian Grabowski 2023-10-10 02:01:46 +02:00 committed by GitHub
parent ac4ae35542
commit 3c131307ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ func CalcFingerprint(publicKeyContent string) (string, error) {
fnName, fp string
err error
)
if setting.SSH.StartBuiltinServer {
if len(setting.SSH.KeygenPath) == 0 {
fnName = "calcFingerprintNative"
fp, err = calcFingerprintNative(publicKeyContent)
} else {