diff options
author | Eduardo Chappa <chappa@washington.edu> | 2019-01-26 09:27:41 -0700 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2019-01-26 09:27:41 -0700 |
commit | 66f85a7c43c53b0a9dc3518d726bb33ede3b035b (patch) | |
tree | 818f8b4d3b01a3877473a1e1e29e056c75de3034 /imap | |
parent | b21e2fe446ea9400c8184d6509cf67418857ab09 (diff) | |
download | alpine-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.
Diffstat (limited to 'imap')
-rw-r--r-- | imap/src/c-client/imap4r1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/imap/src/c-client/imap4r1.c b/imap/src/c-client/imap4r1.c index abaddfe4..2c8616e8 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 */ } } } |