1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 09:58:01 +00:00

Spelling fix. When the user hits Browse' next to the Private key'

box, they should see a file chooser labelled Select _Private_ Key
File, not Public!

[originally from svn r1302]
This commit is contained in:
Simon Tatham 2001-09-25 20:12:14 +00:00
parent bdb8092492
commit 835b7a9a18

View File

@ -2377,7 +2377,7 @@ static int GenericMainDlgProc(HWND hwnd, UINT msg,
of.nMaxFile = sizeof(filename); of.nMaxFile = sizeof(filename);
of.lpstrFileTitle = NULL; of.lpstrFileTitle = NULL;
of.lpstrInitialDir = NULL; of.lpstrInitialDir = NULL;
of.lpstrTitle = "Select Public Key File"; of.lpstrTitle = "Select Private Key File";
of.Flags = 0; of.Flags = 0;
if (GetOpenFileName(&of)) { if (GetOpenFileName(&of)) {
strcpy(cfg.keyfile, filename); strcpy(cfg.keyfile, filename);