summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2019-01-26 09:27:41 -0700
committerEduardo Chappa <chappa@washington.edu>2019-01-26 09:27:41 -0700
commit66f85a7c43c53b0a9dc3518d726bb33ede3b035b (patch)
tree818f8b4d3b01a3877473a1e1e29e056c75de3034
parentb21e2fe446ea9400c8184d6509cf67418857ab09 (diff)
downloadalpine-66f85a7c43c53b0a9dc3518d726bb33ede3b035b.tar.xz
* Ignore errors coming from errors in parsing the ID from an IMAP
server. Based on a report by Stefan in the Alpine-info mailing list.
-rw-r--r--imap/src/c-client/imap4r1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/imap/src/c-client/imap4r1.c b/imap/src/c-client/imap4r1.c
index abaddfe..2c8616e 100644
--- a/imap/src/c-client/imap4r1.c
+++ b/imap/src/c-client/imap4r1.c
@@ -2908,14 +2908,14 @@ IDLIST *imap_parse_idlist (char *text)
sprintf(tmp,"ID value not found for name %.80s, at %.80s", ret->name, s);
fs_give((void **)&ret->name);
fs_give((void **)&ret);
- mm_log (tmp, ERROR);
+ mm_log (tmp, NIL); /* this is an technically an error */
}
}
else { /* failed!, quit */
sprintf(tmp,"ID name \"%.80s\" has no value", ret->name);
fs_give((void **)&ret->name);
fs_give((void **)&ret);
- mm_log (tmp, ERROR);
+ mm_log (tmp, NIL); /* this is an technically an error */
}
}
}