aboutsummaryrefslogtreecommitdiffstats
path: root/pop3.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2010-04-27 09:50:55 +0200
committerMatthias Andree <matthias.andree@gmx.de>2010-04-27 09:50:55 +0200
commit8b6218e0f1486a39a53783e7c86b42285f89e4cf (patch)
tree46d0a5aef12c8b13f5de3eb1b32027f463190dd9 /pop3.c
parent2148260d742663448a8fd7ff950d3d8e7468ccd5 (diff)
downloadfetchmail-8b6218e0f1486a39a53783e7c86b42285f89e4cf.tar.gz
fetchmail-8b6218e0f1486a39a53783e7c86b42285f89e4cf.tar.bz2
fetchmail-8b6218e0f1486a39a53783e7c86b42285f89e4cf.zip
Fix a few Intel C++ remarks and warnings.
Diffstat (limited to 'pop3.c')
-rw-r--r--pop3.c4
1 files changed, 2 insertions, 2 deletions
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;
}