View | Details | Raw Unified | Return to bug 118211
Collapse All | Expand All

(-)isdn4k-utils.org/xisdnload/xisdnload.c (-2 / +2 lines)
Lines 469-475 Link Here
469
    XrmValue namein, pixelout;
469
    XrmValue namein, pixelout;
470
    time_t t;
470
    time_t t;
471
    struct tm *tm;
471
    struct tm *tm;
472
    char now[20];
472
    char now[32];
473
    int a;
473
    int a;
474
474
475
    t = time(NULL);
475
    t = time(NULL);
Lines 537-543 Link Here
537
537
538
      strcpy(label_format, label);
538
      strcpy(label_format, label);
539
539
540
      sprintf(now, "uninitialized %s", history);
540
      snprintf(now, 32, "uninitialized %s", history);
541
      XtSetArg (args[0], XtNlabel, now);
541
      XtSetArg (args[0], XtNlabel, now);
542
      XtSetValues (label_wid, args, ONE);
542
      XtSetValues (label_wid, args, ONE);
543
543

Return to bug 118211