svnno****@sourc*****
svnno****@sourc*****
2014年 3月 20日 (木) 00:24:51 JST
Revision: 5553 http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5553 Author: maya Date: 2014-03-20 00:24:50 +0900 (Thu, 20 Mar 2014) Log Message: ----------- ED25519 を追記 r5547 で見落としたぶん Revision Links: -------------- http://sourceforge.jp/projects/ttssh2/scm/svn/commits/5547 Modified Paths: -------------- trunk/ttssh2/ttxssh/auth.c -------------- next part -------------- Modified: trunk/ttssh2/ttxssh/auth.c =================================================================== --- trunk/ttssh2/ttxssh/auth.c 2014-03-19 15:22:45 UTC (rev 5552) +++ trunk/ttssh2/ttxssh/auth.c 2014-03-19 15:24:50 UTC (rev 5553) @@ -388,7 +388,7 @@ params.lpstrFileTitle = NULL; params.lpstrInitialDir = NULL; UTIL_get_lang_msg("FILEDLG_OPEN_PRIVATEKEY_TITLE", pvar, - "Choose a file with the RSA/DSA/ECDSA private key"); + "Choose a file with the RSA/DSA/ECDSA/ED25519 private key"); params.lpstrTitle = pvar->ts->UIMsg; params.Flags = OFN_FILEMUSTEXIST | OFN_PATHMUSTEXIST | OFN_HIDEREADONLY; @@ -450,7 +450,7 @@ GetDlgItemText(dlg, file_ctl_ID, buf, sizeof(buf)); if (buf[0] == 0) { UTIL_get_lang_msg("MSG_KEYSPECIFY_ERROR", pvar, - "You must specify a file containing the RSA/DSA/ECDSA private key."); + "You must specify a file containing the RSA/DSA/ECDSA/ED25519 private key."); notify_nonfatal_error(pvar, pvar->ts->UIMsg); SetFocus(GetDlgItem(dlg, file_ctl_ID)); destroy_malloced_string(&password);