Skip to content

Commit

Permalink
Bug fix: Setting hidden raw session settings for Configurable priorit…
Browse files Browse the repository at this point in the history
…y of host key types (Bug 1562) overrides host key.

Source commit: ff58ab8de940432c6a2da0007ead99b64b0def52
  • Loading branch information
martinprikryl committed Jan 28, 2018
1 parent 47eae6f commit f2678ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/core/SessionData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ void __fastcall TSessionData::DoLoad(THierarchicalStorage * Storage, bool PuttyI
FPassword = Storage->ReadStringAsBinaryData(L"Password", FPassword);
}
}
HostKey = Storage->ReadString(L"HostKey", HostKey);
HostKey = Storage->ReadString(L"SshHostKey", HostKey); // probably never used
Note = Storage->ReadString(L"Note", Note);
// Putty uses PingIntervalSecs
int PingIntervalSecs = Storage->ReadInteger(L"PingIntervalSecs", -1);
Expand Down

0 comments on commit f2678ef

Please sign in to comment.