Browse Subversion Repository
Diff of /branches/ssh_chacha20poly1305/ttssh2/ttxssh/ttxssh.c
Parent Directory
| Revision Log
| Patch
| 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 |
|
|
| 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 |
|
|
| |