From aeb672ca42cf0cce6d9f3d302f4d04513fc673c3 Mon Sep 17 00:00:00 2001 From: Jindrich Novy Date: Fri, 24 Oct 2008 12:31:02 +0200 Subject: [PATCH] Fix "timewarp" bug while listing changelog via "rpm -q --changelog" - date is no more one day in advance than written in changelog --- build/parseChangelog.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/build/parseChangelog.c b/build/parseChangelog.c index 1c6f7b4..c83771b 100644 --- a/build/parseChangelog.c +++ b/build/parseChangelog.c @@ -89,8 +89,6 @@ static int dateToTimet(const char * datestr, time_t * secs) *secs = mktime(&time); if (*secs == -1) goto exit; - /* adjust to GMT */ - *secs += timezone; rc = 0; exit: -- 2.7.4