X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/3b4c589946c888bfee8bc84a75dd3a8cd249396c..d40a94b97d318ea943d466abf6c123a71bcbf87a:/puttygen.c diff --git a/puttygen.c b/puttygen.c index 8ce44b4a..19245f80 100644 --- a/puttygen.c +++ b/puttygen.c @@ -325,7 +325,7 @@ static void setupbigedit1(HWND hwnd, int id, struct RSAKey *key) { static void setupbigedit2(HWND hwnd, int id, struct ssh2_userkey *key) { unsigned char *pub_blob; char *buffer, *p; - int pub_len, buflen; + int pub_len; int i; pub_blob = key->alg->public_blob(key->data, &pub_len); @@ -530,8 +530,13 @@ static int CALLBACK MainDlgProc (HWND hwnd, UINT msg, sfree(*state->commentptr); *state->commentptr = smalloc(len+1); GetWindowText(editctl, *state->commentptr, len+1); - } - } + if (state->ssh2) { + setupbigedit2(hwnd, IDC_KEYDISPLAY, &state->ssh2key); + } else { + setupbigedit1(hwnd, IDC_KEYDISPLAY, &state->key); + } + } + } break; case IDC_ABOUT: EnableWindow(hwnd, 0);