summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 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 */
}
}
}