summaryrefslogtreecommitdiffstats
path: root/imap
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-09-02 07:41:34 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-09-02 07:41:34 +0000
commitb65cbe0580878ddb8872c5681bde3546865b6a52 (patch)
tree35848fe3f139ff4125c0fdaa95cef40bba4681cd /imap
parent55128aa97a7d694f8ae92f7921fe328092b8011c (diff)
Fix a tiny signedness warning.
Diffstat (limited to 'imap')
-rw-r--r--imap/auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/imap/auth.c b/imap/auth.c
index 04a2b36f..ba11f023 100644
--- a/imap/auth.c
+++ b/imap/auth.c
@@ -73,7 +73,7 @@ static void hmac_md5 (const char* password, char* challenge,
secret_len = MD5_DIGEST_LEN;
}
else
- strfcpy (secret, password, sizeof (secret));
+ strfcpy ((char *) secret, password, sizeof (secret));
memset (ipad, 0, sizeof (ipad));
memset (opad, 0, sizeof (opad));