=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/kdump/ktrstruct.c,v retrieving revision 1.19 retrieving revision 1.20 diff -c -r1.19 -r1.20 *** src/usr.bin/kdump/ktrstruct.c 2016/05/22 23:02:28 1.19 --- src/usr.bin/kdump/ktrstruct.c 2016/06/07 01:34:39 1.20 *************** *** 1,4 **** ! /* $OpenBSD: ktrstruct.c,v 1.19 2016/05/22 23:02:28 guenther Exp $ */ /*- * Copyright (c) 1988, 1993 --- 1,4 ---- ! /* $OpenBSD: ktrstruct.c,v 1.20 2016/06/07 01:34:39 tedu Exp $ */ /*- * Copyright (c) 1988, 1993 *************** *** 147,153 **** } else printf("%jd", (intmax_t)t); ! if (!relative) { tm = localtime(&t); if (tm != NULL) { (void)strftime(timestr, sizeof(timestr), TIME_FORMAT, --- 147,154 ---- } else printf("%jd", (intmax_t)t); ! /* 1970s times are probably relative */ ! if (!relative && t > (10 * 365 * 24 * 3600)) { tm = localtime(&t); if (tm != NULL) { (void)strftime(timestr, sizeof(timestr), TIME_FORMAT,