X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=date.c;h=542c004c2e8d2a9f731a1f303cc3393d88f5a6e8;hb=072db2789c21314cfbf43215186341d0b2b47523;hp=18259227321f47988386c2bd70888b3c967d8ab6;hpb=659db3f673fe199bad6ce9cc625d3a1b098bfbcf;p=git.git diff --git a/date.c b/date.c index 182592273..542c004c2 100644 --- a/date.c +++ b/date.c @@ -4,9 +4,6 @@ * Copyright (C) Linus Torvalds, 2005 */ -#include -#include - #include "cache.h" static time_t my_mktime(struct tm *tm) @@ -65,12 +62,11 @@ const char *show_date(unsigned long time, int tz, int relative) if (relative) { unsigned long diff; - time_t t = gm_time_t(time, tz); struct timeval now; gettimeofday(&now, NULL); - if (now.tv_sec < t) + if (now.tv_sec < time) return "in the future"; - diff = now.tv_sec - t; + diff = now.tv_sec - time; if (diff < 90) { snprintf(timebuf, sizeof(timebuf), "%lu seconds ago", diff); return timebuf;