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 7197 by zmatsuo, Mon Aug 27 14:24:15 2018 UTC revision 7360 by zmatsuo, Sun Dec 23 16:13:05 2018 UTC
# Line 3222  static int get_keys_file_name(HWND paren Line 3222  static int get_keys_file_name(HWND paren
3222          OPENFILENAME params;          OPENFILENAME params;
3223          char fullname_buf[2048] = "ssh_known_hosts";          char fullname_buf[2048] = "ssh_known_hosts";
3224    
3225          params.lStructSize = sizeof(OPENFILENAME);          params.lStructSize = get_OPENFILENAME_SIZE();
3226          params.hwndOwner = parent;          params.hwndOwner = parent;
3227          params.lpstrFilter = NULL;          params.lpstrFilter = NULL;
3228          params.lpstrCustomFilter = NULL;          params.lpstrCustomFilter = NULL;
# Line 3940  static BOOL CALLBACK TTXScpDialog(HWND d Line 3940  static BOOL CALLBACK TTXScpDialog(HWND d
3940                          OPENFILENAME ofn;                          OPENFILENAME ofn;
3941    
3942                          ZeroMemory(&ofn, sizeof(ofn));                          ZeroMemory(&ofn, sizeof(ofn));
3943                          ofn.lStructSize = sizeof(OPENFILENAME);                          ofn.lStructSize = get_OPENFILENAME_SIZE();
3944                          ofn.hwndOwner = dlg;                          ofn.hwndOwner = dlg;
3945  #if 0  #if 0
3946                          get_lang_msg("FILEDLG_SELECT_LOGVIEW_APP_FILTER", ts.UIMsg, sizeof(ts.UIMsg),                          get_lang_msg("FILEDLG_SELECT_LOGVIEW_APP_FILTER", ts.UIMsg, sizeof(ts.UIMsg),
# Line 4652  static BOOL CALLBACK TTXKeyGenerator(HWN Line 4652  static BOOL CALLBACK TTXKeyGenerator(HWN
4652    
4653                          // saving file dialog                          // saving file dialog
4654                          ZeroMemory(&ofn, sizeof(ofn));                          ZeroMemory(&ofn, sizeof(ofn));
4655                          ofn.lStructSize = sizeof(ofn);                          ofn.lStructSize = get_OPENFILENAME_SIZE();
4656                          ofn.hwndOwner = dlg;                          ofn.hwndOwner = dlg;
4657                          switch (public_key.type) {                          switch (public_key.type) {
4658                          case KEY_RSA1:                          case KEY_RSA1:
# Line 4868  public_error: Line 4868  public_error:
4868    
4869                          // saving file dialog                          // saving file dialog
4870                          ZeroMemory(&ofn, sizeof(ofn));                          ZeroMemory(&ofn, sizeof(ofn));
4871                          ofn.lStructSize = sizeof(ofn);                          ofn.lStructSize = get_OPENFILENAME_SIZE();
4872                          ofn.hwndOwner = dlg;                          ofn.hwndOwner = dlg;
4873                          switch (private_key.type) {                          switch (private_key.type) {
4874                          case KEY_RSA1:                          case KEY_RSA1:

Legend:
Removed from v.7197  
changed lines
  Added in v.7360

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