From: Alan Cox Date: Tue, 21 Nov 2017 21:24:10 +0000 (+0000) Subject: setdate: Forgot to commit the final fix X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=2b160c2f65d2ccaf3c9666b31a4a69545a92a42a;p=FUZIX.git setdate: Forgot to commit the final fix --- diff --git a/Applications/util/setdate.c b/Applications/util/setdate.c index 2531ac81..30748b58 100644 --- a/Applications/util/setdate.c +++ b/Applications/util/setdate.c @@ -226,7 +226,7 @@ retime: } if (!set) return 0; - tm.tm_isdst = 0; /* FIXME -1 once we have dst fixed */ + tm->tm_isdst = 0; /* FIXME -1 once we have dst fixed */ t = mktime(tm); if (t == (time_t) -1) { fprintf(stderr, "mktime: internal error.\n");