Revision: 10248 https://osdn.net/projects/ttssh2/scm/svn/commits/10248 Author: doda Date: 2022-09-07 02:08:03 +0900 (Wed, 07 Sep 2022) Log Message: ----------- セッションの複製時等にKEX Client Secretの記録が行われない問題を修正した Modified Paths: -------------- trunk/ttssh2/ttxssh/ttxssh.c -------------- next part -------------- Modified: trunk/ttssh2/ttxssh/ttxssh.c =================================================================== --- trunk/ttssh2/ttxssh/ttxssh.c 2022-09-06 17:07:52 UTC (rev 10247) +++ trunk/ttssh2/ttxssh/ttxssh.c 2022-09-06 17:08:03 UTC (rev 10248) @@ -512,6 +512,10 @@ _itoa_s(settings->AuthBanner, buf, sizeof(buf), 10); WritePrivateProfileString("TTSSH", "AuthBanner", buf, fileName); + + WritePrivateProfileString("TTSSH", "KexKeyLogFile", settings->KexKeyLogFile, fileName); + WritePrivateProfileString("TTSSH", "KexKeyLogging", + settings->KexKeyLogging ? "1" : "0", fileName); }