[BACK]Return to ktrstruct.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / kdump

Diff for /src/usr.bin/kdump/ktrstruct.c between version 1.19 and 1.20

version 1.19, 2016/05/22 23:02:28 version 1.20, 2016/06/07 01:34:39
Line 147 
Line 147 
         } else          } else
                 printf("%jd", (intmax_t)t);                  printf("%jd", (intmax_t)t);
   
         if (!relative) {          /* 1970s times are probably relative */
           if (!relative && t > (10 * 365 * 24 * 3600)) {
                 tm = localtime(&t);                  tm = localtime(&t);
                 if (tm != NULL) {                  if (tm != NULL) {
                         (void)strftime(timestr, sizeof(timestr), TIME_FORMAT,                          (void)strftime(timestr, sizeof(timestr), TIME_FORMAT,

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20