Jacob's fixes for the Event Log
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Fri, 2 Mar 2001 09:24:05 +0000 (09:24 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Fri, 2 Mar 2001 09:24:05 +0000 (09:24 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@963 cda61777-01e9-0310-a592-d414129be87e

windlg.c

index f814cf4..6d3b0f4 100644 (file)
--- a/windlg.c
+++ b/windlg.c
@@ -50,7 +50,7 @@ static int CALLBACK LogProc (HWND hwnd, UINT msg,
     switch (msg) {
       case WM_INITDIALOG:
         {
-            static const int tabs[4] = {78, 108};
+            static int tabs[4] = {78, 108};
             SendDlgItemMessage (hwnd, IDN_LIST, LB_SETTABSTOPS, 2,
                                 (LPARAM) tabs);
         }
@@ -2058,14 +2058,14 @@ void logevent (char *string) {
     events[nevents] = smalloc(strlen(timebuf)+strlen(string)+1);
     strcpy(events[nevents], timebuf);
     strcat(events[nevents], string);
-    nevents++;
     if (logbox) {
         int count;
        SendDlgItemMessage (logbox, IDN_LIST, LB_ADDSTRING,
-                           0, (LPARAM)string);
+                           0, (LPARAM)events[nevents]);
        count = SendDlgItemMessage (logbox, IDN_LIST, LB_GETCOUNT, 0, 0);
        SendDlgItemMessage (logbox, IDN_LIST, LB_SETTOPINDEX, count-1, 0);
     }
+    nevents++;
 }
 
 void showeventlog (HWND hwnd) {