mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Respect SSH.KeygenPath option when calculating ssh key fingerprints (#27536)
Fixes #27535
This commit is contained in:
parent
ac4ae35542
commit
3c131307ac
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue