Develop and Download Open Source Software

Browse Subversion Repository

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

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

revision 2856 by yutakakn, Sun Mar 26 15:43:58 2006 UTC revision 2868 by yutakakn, Sun Jun 11 14:26:30 2006 UTC
# Line 731  static void add_err_msg(PTInstVar pvar, Line 731  static void add_err_msg(PTInstVar pvar,
731  void notify_nonfatal_error(PTInstVar pvar, char FAR * msg)  void notify_nonfatal_error(PTInstVar pvar, char FAR * msg)
732  {  {
733          if (!pvar->showing_err) {          if (!pvar->showing_err) {
734                  PostMessage(pvar->NotificationWindow, WM_COMMAND,                  // 未接続の状態では通知先ウィンドウがないので、デスクトップをオーナーとして
735                                          ID_SSHASYNCMESSAGEBOX, 0);                  // メッセージボックスを出現させる。(2006.6.11 yutaka)
736                    if (pvar->NotificationWindow == NULL) {
737                            MessageBox(NULL, msg, "Tera Term: not fatal error", MB_OK|MB_ICONINFORMATION);
738                            msg[0] = '\0';
739    
740                    } else {
741                            PostMessage(pvar->NotificationWindow, WM_COMMAND,
742                                                    ID_SSHASYNCMESSAGEBOX, 0);
743                    }
744          }          }
745          if (msg[0] != 0) {          if (msg[0] != 0) {
746                  notify_verbose_message(pvar, msg, LOG_LEVEL_ERROR);                  notify_verbose_message(pvar, msg, LOG_LEVEL_ERROR);
# Line 3100  int CALLBACK LibMain(HANDLE hInstance, W Line 3108  int CALLBACK LibMain(HANDLE hInstance, W
3108    
3109  /*  /*
3110   * $Log: not supported by cvs2svn $   * $Log: not supported by cvs2svn $
3111     * Revision 1.29  2006/03/26 15:43:58  yutakakn
3112     * SSH2のknown_hosts対応を追加した。
3113     *
3114   * Revision 1.28  2006/02/18 07:37:02  yutakakn   * Revision 1.28  2006/02/18 07:37:02  yutakakn
3115   *   ・コンパイラを Visual Studio 2005 Standard Edition に切り替えた。   *   ・コンパイラを Visual Studio 2005 Standard Edition に切り替えた。
3116   *   ・stricmp()を_stricmp()へ置換した   *   ・stricmp()を_stricmp()へ置換した

Legend:
Removed from v.2856  
changed lines
  Added in v.2868

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