From 835b7a9a184bcb78c3c81baeb74f83694c049534 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Tue, 25 Sep 2001 20:12:14 +0000 Subject: [PATCH] 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] --- windlg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windlg.c b/windlg.c index c7530f25..aee98547 100644 --- 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);