• 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

Revision6ddf06c4a61f2b582adc912a164ddb46adfb17d6 (tree)
Time2018-01-12 12:49:46
AuthorIWAMOTO Kouichi <sue@iwmt...>
CommiterIWAMOTO Kouichi

Log Message

r7022 での再適用をミスっていたので修正 orz

git-svn-id: svn+ssh://svn.osdn.net/svnroot/ttssh2/trunk@7023 f5f01b69-1e22-0410-acbf-894ab4bd6246

Change Summary

Incremental Difference

--- a/ttssh2/ttxssh/ssh.c
+++ b/ttssh2/ttxssh/ssh.c
@@ -4973,7 +4973,7 @@ static BOOL handle_SSH2_kexinit(PTInstVar pvar)
49734973 logprintf(LOG_LEVEL_VERBOSE, "server proposal: encryption algorithm client to server: %s", buf);
49744974
49754975 pvar->ciphers[MODE_OUT] = choose_SSH2_cipher_algorithm(buf, myproposal[PROPOSAL_ENC_ALGS_CTOS]);
4976- if (pvar->ciphers[MODE_OUT] == SSH_CIPHER_NONE) {
4976+ if (pvar->ciphers[MODE_OUT] == NULL) {
49774977 strncpy_s(tmp, sizeof(tmp), "unknown Encrypt algorithm(client to server): ", _TRUNCATE);
49784978 strncat_s(tmp, sizeof(tmp), buf, _TRUNCATE);
49794979 msg = tmp;
@@ -4997,7 +4997,7 @@ static BOOL handle_SSH2_kexinit(PTInstVar pvar)
49974997 logprintf(LOG_LEVEL_VERBOSE, "server proposal: encryption algorithm server to client: %s", buf);
49984998
49994999 pvar->ciphers[MODE_IN] = choose_SSH2_cipher_algorithm(buf, myproposal[PROPOSAL_ENC_ALGS_STOC]);
5000- if (pvar->ciphers[MODE_IN] == SSH_CIPHER_NONE) {
5000+ if (pvar->ciphers[MODE_IN] == NULL) {
50015001 strncpy_s(tmp, sizeof(tmp), "unknown Encrypt algorithm(server to client): ", _TRUNCATE);
50025002 strncat_s(tmp, sizeof(tmp), buf, _TRUNCATE);
50035003 msg = tmp;