From e13f6cfeafeb2c374faa7c03a083dd3d46848b29 Mon Sep 17 00:00:00 2001 From: Nalin Dahyabhai Date: Aug 25 2010 19:16:44 +0000 Subject: - comment why we made that change --- diff --git a/src/submit.c b/src/submit.c index 9eb972e..a71cf20 100644 --- a/src/submit.c +++ b/src/submit.c @@ -224,7 +224,10 @@ cm_submit_delta_from_string(const char *deltas, time_t now, time_t *delta) now_tm.tm_mon += val; now_tm.tm_year += (now_tm.tm_mon / 12); now_tm.tm_mon %= 12; - now_tm.tm_isdst = -1; + now_tm.tm_isdst = -1; /* don't tell libc that + * we "know" what's up + * with DST for the time + * in this structure */ now = mktime(&now_tm); } val = 0;