summaryrefslogtreecommitdiff
path: root/imap/src/osdep/unix
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2021-06-06 18:02:28 -0600
committerEduardo Chappa <chappa@washington.edu>2021-06-06 18:02:28 -0600
commitea54909c67de2589e6632efb25550814a2fc2411 (patch)
treeae36e8f3e6fad73624eadd681d5dab5996a94744 /imap/src/osdep/unix
parente10411bf0ecb248b65ca83882e945e15f906a6d4 (diff)
downloadalpine-ea54909c67de2589e6632efb25550814a2fc2411.tar.xz
* Clear some warnings given by gcc-10.
Diffstat (limited to 'imap/src/osdep/unix')
-rw-r--r--imap/src/osdep/unix/ckp_psx.c2
-rw-r--r--imap/src/osdep/unix/dummy.c7
-rw-r--r--imap/src/osdep/unix/unix.c12
3 files changed, 12 insertions, 9 deletions
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);
diff --git a/imap/src/osdep/unix/dummy.c b/imap/src/osdep/unix/dummy.c
index 660c916a..4c57c094 100644
--- a/imap/src/osdep/unix/dummy.c
+++ b/imap/src/osdep/unix/dummy.c
@@ -724,8 +724,11 @@ long dummy_append (MAILSTREAM *stream,char *mailbox,append_t af,void *data)
/* append to INBOX? */
if (!compare_cstring (mailbox,"INBOX")) {
/* yes, if no empty proto try creating */
- if (!ts && !(*(ts = default_proto (NIL))->dtb->create) (ts,"INBOX"))
- ts = NIL;
+ if (!ts){
+ ts = default_proto (NIL);
+ if(!(*ts->dtb->create)(ts,"INBOX"))
+ ts = NIL;
+ }
}
else if (dummy_file (tmp,mailbox) && ((fd = open (tmp,O_RDONLY,NIL)) < 0)) {
if ((e = errno) == ENOENT) /* failed, was it no such file? */
diff --git a/imap/src/osdep/unix/unix.c b/imap/src/osdep/unix/unix.c
index 68f64269..97626576 100644
--- a/imap/src/osdep/unix/unix.c
+++ b/imap/src/osdep/unix/unix.c
@@ -588,12 +588,12 @@ void unix_close (MAILSTREAM *stream,long options)
*/
-STRINGLIST XIMAPbase = {"X-IMAPbase", 10, NIL};
-STRINGLIST XIMAP = {"X-IMAP", 6, &XIMAPbase};
-STRINGLIST XUID = {"X-UID", 5, &XIMAP};
-STRINGLIST XKeywords = {"X-Keywords", 10, &XUID};
-STRINGLIST XStatus = {"X-Status", 8, &XKeywords};
-STRINGLIST Status = {"Status", 6, &XStatus};
+STRINGLIST XIMAPbase = {{"X-IMAPbase", 10}, NIL};
+STRINGLIST XIMAP = {{"X-IMAP", 6}, &XIMAPbase};
+STRINGLIST XUID = {{"X-UID", 5}, &XIMAP};
+STRINGLIST XKeywords = {{"X-Keywords", 10}, &XUID};
+STRINGLIST XStatus = {{"X-Status", 8}, &XKeywords};
+STRINGLIST Status = {{"Status", 6}, &XStatus};
static STRINGLIST *unix_hlines = &Status;