From: Jindrich Novy Date: Fri, 24 Oct 2008 10:31:02 +0000 (+0200) Subject: Fix "timewarp" bug while listing changelog via "rpm -q --changelog" X-Git-Tag: tznext/4.11.0.1.tizen20130304~3522 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aeb672ca42cf0cce6d9f3d302f4d04513fc673c3;p=tools%2Flibrpm-tizen.git Fix "timewarp" bug while listing changelog via "rpm -q --changelog" - date is no more one day in advance than written in changelog --- 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: