]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Spelling fix. When the user hits `Browse' next to the `Private key'
authorSimon Tatham <anakin@pobox.com>
Tue, 25 Sep 2001 20:12:14 +0000 (20:12 +0000)
committerSimon Tatham <anakin@pobox.com>
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!

[originally from svn r1302]

windlg.c

index c7530f2581a0fd4c0b9c573d88040e140e00fedd..aee98547a311fff9bd119b68bb5169ff6b08cb72 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);