Develop and Download Open Source Software

Browse Subversion Repository

Diff of /branches/ssh_chacha20poly1305/ttssh2/ttxssh/ssh.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 5900 by doda, Tue Jun 2 09:07:33 2015 UTC revision 5925 by maya, Mon Jul 27 04:32:54 2015 UTC
# Line 5469  static BOOL handle_SSH2_dh_kex_reply(PTI Line 5469  static BOOL handle_SSH2_dh_kex_reply(PTI
5469          if (hostkey->type != pvar->hostkey_type) {  // ホストキーの種別比較          if (hostkey->type != pvar->hostkey_type) {  // ホストキーの種別比較
5470                  _snprintf_s(emsg_tmp, sizeof(emsg_tmp), _TRUNCATE,                  _snprintf_s(emsg_tmp, sizeof(emsg_tmp), _TRUNCATE,
5471                              "type mismatch for decoded server_host_key_blob (kex:%s blob:%s) @ %s",                              "type mismatch for decoded server_host_key_blob (kex:%s blob:%s) @ %s",
5472                              get_ssh_keytype_name(pvar->hostkey_type), (hostkey->type), __FUNCTION__);                              get_ssh_keytype_name(pvar->hostkey_type), get_ssh_keytype_name(hostkey->type), __FUNCTION__);
5473                  emsg = emsg_tmp;                  emsg = emsg_tmp;
5474                  goto error;                  goto error;
5475          }          }
# Line 5694  static BOOL handle_SSH2_dh_gex_reply(PTI Line 5694  static BOOL handle_SSH2_dh_gex_reply(PTI
5694          if (hostkey->type != pvar->hostkey_type) {  // ホストキーの種別比較          if (hostkey->type != pvar->hostkey_type) {  // ホストキーの種別比較
5695                  _snprintf_s(emsg_tmp, sizeof(emsg_tmp), _TRUNCATE,                  _snprintf_s(emsg_tmp, sizeof(emsg_tmp), _TRUNCATE,
5696                              "type mismatch for decoded server_host_key_blob (kex:%s blob:%s) @ %s",                              "type mismatch for decoded server_host_key_blob (kex:%s blob:%s) @ %s",
5697                              get_ssh_keytype_name(pvar->hostkey_type), (hostkey->type), __FUNCTION__);                              get_ssh_keytype_name(pvar->hostkey_type), get_ssh_keytype_name(hostkey->type), __FUNCTION__);
5698                  emsg = emsg_tmp;                  emsg = emsg_tmp;
5699                  goto error;                  goto error;
5700          }          }
# Line 5928  static BOOL handle_SSH2_ecdh_kex_reply(P Line 5928  static BOOL handle_SSH2_ecdh_kex_reply(P
5928          if (hostkey->type != pvar->hostkey_type) {  // ホストキーの種別比較          if (hostkey->type != pvar->hostkey_type) {  // ホストキーの種別比較
5929                  _snprintf_s(emsg_tmp, sizeof(emsg_tmp), _TRUNCATE,                  _snprintf_s(emsg_tmp, sizeof(emsg_tmp), _TRUNCATE,
5930                              "type mismatch for decoded server_host_key_blob (kex:%s blob:%s) @ %s",                              "type mismatch for decoded server_host_key_blob (kex:%s blob:%s) @ %s",
5931                              get_ssh_keytype_name(pvar->hostkey_type), (hostkey->type), __FUNCTION__);                              get_ssh_keytype_name(pvar->hostkey_type), get_ssh_keytype_name(hostkey->type), __FUNCTION__);
5932                  emsg = emsg_tmp;                  emsg = emsg_tmp;
5933                  goto error;                  goto error;
5934          }          }

Legend:
Removed from v.5900  
changed lines
  Added in v.5925

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26