From 2b160c2f65d2ccaf3c9666b31a4a69545a92a42a Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Tue, 21 Nov 2017 21:24:10 +0000 Subject: [PATCH] setdate: Forgot to commit the final fix --- Applications/util/setdate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.34.1