From af7d73c7ab76ad81fed78b7f5c024daf1af87d9d Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Wed, 14 Jan 2009 01:56:15 +0000 Subject: Fix a few compiler warnings around implicit conversion or extra ";". svn path=/branches/BRANCH_6-3/; revision=5261 --- pop3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pop3.c') diff --git a/pop3.c b/pop3.c index 561a4b59..14cfde82 100644 --- a/pop3.c +++ b/pop3.c @@ -687,7 +687,7 @@ static int pop3_getauth(int sock, struct query *ctl, char *greeting) } /* copy timestamp and password into digestion buffer */ - msg = xmalloc((end-start+1) + strlen(ctl->password) + 1); + msg = (char *)xmalloc((end-start+1) + strlen(ctl->password) + 1); strcpy(msg,start); strcat(msg,ctl->password); strcpy(ctl->digest, MD5Digest((unsigned char *)msg)); -- cgit v1.2.3