X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=windows%2Fwindlg.c;h=e29f12914e3428e0b54257a6ae837802cb0ef466;hb=fb839a27fb8cab36b42c7e19bfd5281f98641676;hp=17327866edb44d132a24f3c202044badb158aec4;hpb=e22a72c66a2d876f2ebe4bd6384b246af92cda4d;p=PuTTY.git diff --git a/windows/windlg.c b/windows/windlg.c index 17327866..e29f1291 100644 --- a/windows/windlg.c +++ b/windows/windlg.c @@ -200,10 +200,12 @@ static INT_PTR CALLBACK AboutProc(HWND hwnd, UINT msg, SetWindowText(hwnd, str); sfree(str); { + char *buildinfo_text = buildinfo("\r\n"); char *text = dupprintf - ("%s\r\n\r\n%s\r\n\r\n%s", - appname, ver, + ("%s\r\n\r\n%s\r\n\r\n%s\r\n\r\n%s", + appname, ver, buildinfo_text, "\251 " SHORT_COPYRIGHT_DETAILS ". All rights reserved."); + sfree(buildinfo_text); SetDlgItemText(hwnd, IDA_TEXT, text); sfree(text); }