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 4531 by doda, Tue Jul 26 08:50:11 2011 UTC revision 4533 by yutakapon, Tue Jul 26 15:07:33 2011 UTC
# Line 82  static char FAR *ProtocolFamilyList[] = Line 82  static char FAR *ProtocolFamilyList[] =
82    
83  #include "compat_w95.h"  #include "compat_w95.h"
84    
85    #include "puttyversion.h"
86    
87  #define MATCH_STR(s, o) strncmp((s), (o), NUM_ELEM(o) - 1)  #define MATCH_STR(s, o) strncmp((s), (o), NUM_ELEM(o) - 1)
88  #define MATCH_STR_I(s, o) _strnicmp((s), (o), NUM_ELEM(o) - 1)  #define MATCH_STR_I(s, o) _strnicmp((s), (o), NUM_ELEM(o) - 1)
89    
# Line 2375  static void init_about_dlg(PTInstVar pva Line 2377  static void init_about_dlg(PTInstVar pva
2377  #endif  #endif
2378          SendMessage(GetDlgItem(dlg, IDC_ZLIB_VERSION), WM_SETTEXT, 0, (LPARAM)buf);          SendMessage(GetDlgItem(dlg, IDC_ZLIB_VERSION), WM_SETTEXT, 0, (LPARAM)buf);
2379    
2380            // PuTTYのバージョンを設定する (2011.7.26 yutaka)
2381    #ifdef PUTTYVERSION
2382            _snprintf_s(buf, sizeof(buf), _TRUNCATE, "PuTTY %s", PUTTYVERSION);
2383    #else
2384            _snprintf(buf, sizeof(buf), "PuTTY Unknown");
2385    #endif
2386            SendMessage(GetDlgItem(dlg, IDC_PUTTY_VERSION), WM_SETTEXT, 0, (LPARAM)buf);
2387    
2388          // TTSSHダイアログに表示するSSHに関する情報 (2004.10.30 yutaka)          // TTSSHダイアログに表示するSSHに関する情報 (2004.10.30 yutaka)
2389          if (pvar->socket != INVALID_SOCKET) {          if (pvar->socket != INVALID_SOCKET) {

Legend:
Removed from v.4531  
changed lines
  Added in v.4533

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