From 8b6218e0f1486a39a53783e7c86b42285f89e4cf Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Tue, 27 Apr 2010 09:50:55 +0200 Subject: Fix a few Intel C++ remarks and warnings. --- pop3.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pop3.c') diff --git a/pop3.c b/pop3.c index b1f9621c..741a5319 100644 --- a/pop3.c +++ b/pop3.c @@ -693,7 +693,7 @@ static int pop3_getauth(int sock, struct query *ctl, char *greeting) strcpy((char *)ctl->digest, MD5Digest((unsigned char *)msg)); free(msg); - ok = gen_transact(sock, "APOP %s %s", ctl->remotename, ctl->digest); + ok = gen_transact(sock, "APOP %s %s", ctl->remotename, (char *)ctl->digest); break; case P_RPOP: @@ -856,7 +856,7 @@ static int pop3_fastuidl( int sock, struct query *ctl, unsigned int count, int if (mark == UID_DELETED || mark == UID_EXPUNGED) { if (outlevel >= O_VERBOSE) - report(stderr, GT_("id=%s (num=%d) was deleted, but is still present!\n"), id, try_nr); + report(stderr, GT_("id=%s (num=%u) was deleted, but is still present!\n"), id, try_nr); /* just mark it as seen now! */ newl->val.status.mark = mark = UID_SEEN; } -- cgit v1.2.3