Spelling fix. When the user hits `Browse' next to the `Private key'
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Tue, 25 Sep 2001 20:12:14 +0000 (20:12 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Tue, 25 Sep 2001 20:12:14 +0000 (20:12 +0000)
box, they should see a file chooser labelled Select _Private_ Key
File, not Public!

git-svn-id: svn://svn.tartarus.org/sgt/putty@1302 cda61777-01e9-0310-a592-d414129be87e

windlg.c

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