[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.8 and 1.9

version 1.8, 2014/12/15 01:48:54 version 1.9, 2014/12/16 03:19:23
Line 146 
Line 146 
   
         if (!relative) {          if (!relative) {
                 tm = localtime(&t);                  tm = localtime(&t);
                 (void)strftime(timestr, sizeof(timestr), TIME_FORMAT, tm);                  if (tm != NULL) {
                 printf("<\"%s\">", timestr);                          (void)strftime(timestr, sizeof(timestr), TIME_FORMAT,
                               tm);
                           printf("<\"%s\">", timestr);
                   }
         }          }
 }  }
   

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9