• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Tera Termの個人的な作業用リポジトリ


Commit MetaInfo

Revisão4fda7708a50ee86c774770a92cfb62268d284551 (tree)
Hora2022-09-06 23:12:10
AutorIWAMOTO Kouichi <sue@iwmt...>
CommiterIWAMOTO Kouichi

Mensagem de Log

セッションの複製時等にKEX Client Secretの記録が行われない問題を修正した

Mudança Sumário

Diff

--- a/ttssh2/ttxssh/ttxssh.c
+++ b/ttssh2/ttxssh/ttxssh.c
@@ -512,6 +512,10 @@ static void write_ssh_options(PTInstVar pvar, const wchar_t *fileName,
512512
513513 _itoa_s(settings->AuthBanner, buf, sizeof(buf), 10);
514514 WritePrivateProfileString("TTSSH", "AuthBanner", buf, fileName);
515+
516+ WritePrivateProfileString("TTSSH", "KexKeyLogFile", settings->KexKeyLogFile, fileName);
517+ WritePrivateProfileString("TTSSH", "KexKeyLogging",
518+ settings->KexKeyLogging ? "1" : "0", fileName);
515519 }
516520
517521