mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-02 03:52:49 -05:00
Steven Shockley points out that the .PPK extension is far from obvious to
users. Update the file selection dialogs to mention it per the usual Windows convention, and also sprinkle references to it throughout the docs. I've also scattered hints that most tools need PuTTY's native format; perhaps this will reduce the frequency with which FAQ A.1.2 trips people up. [originally from svn r2625]
This commit is contained in:
@ -202,7 +202,8 @@ static int prompt_keyfile(HWND hwnd, char *dlgtitle,
|
||||
#endif
|
||||
of.hwndOwner = hwnd;
|
||||
if (ppk) {
|
||||
of.lpstrFilter = "PuTTY Private Key Files\0*.PPK\0All Files\0*\0\0\0";
|
||||
of.lpstrFilter = "PuTTY Private Key Files (*.ppk)\0*.PPK\0"
|
||||
"All Files\0*\0\0\0";
|
||||
of.lpstrDefExt = ".ppk";
|
||||
} else {
|
||||
of.lpstrFilter = "All Files\0*\0\0\0";
|
||||
|
Reference in New Issue
Block a user