From ea54909c67de2589e6632efb25550814a2fc2411 Mon Sep 17 00:00:00 2001 From: Eduardo Chappa Date: Sun, 6 Jun 2021 18:02:28 -0600 Subject: * Clear some warnings given by gcc-10. --- imap/src/osdep/unix/ckp_psx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'imap/src/osdep/unix/ckp_psx.c') diff --git a/imap/src/osdep/unix/ckp_psx.c b/imap/src/osdep/unix/ckp_psx.c index 0f425bd3..6c095730 100644 --- a/imap/src/osdep/unix/ckp_psx.c +++ b/imap/src/osdep/unix/ckp_psx.c @@ -53,7 +53,7 @@ struct passwd *checkpw (struct passwd *pw,char *pass,int argc,char *argv[]) * -1 local time is 1 day behind UTC, offset -24 hours * -36x local time is January 1, UTC is December 31, offset +24 hours */ - if (julian = t->tm_yday -julian) + if ((julian = t->tm_yday -julian) != 0) zone += ((julian < 0) == (abs (julian) == 1)) ? -24*60 : 24*60; /* days since 1/1/1970 local time */ now = ((now /60) + zone) / (60*24); -- cgit v1.2.3-54-g00ecf