diff --git a/usr.sbin/apm/apm.c b/usr.sbin/apm/apm.c index b0afefb56dfe..62a3aedf01fc 100644 --- a/usr.sbin/apm/apm.c +++ b/usr.sbin/apm/apm.c @@ -293,9 +293,12 @@ print_all_info(int fd, apm_info_t aip, int bioscall_available) t = mktime(&tm); else t = timegm(&tm); - tm = *localtime(&t); - strftime(buf, sizeof(buf), "%c", &tm); - printf("Resume timer: %s\n", buf); + if (t != -1) { + tm = *localtime(&t); + strftime(buf, sizeof(buf), "%c", &tm); + printf("Resume timer: %s\n", buf); + } else + printf("Resume timer: unknown\n"); } }