diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2010-03-19 00:07:08 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2010-03-19 00:07:08 +0100 |
commit | 9c10d69f36fed4962354b7a38261fe47f154ba2b (patch) | |
tree | 0cbbab94f893644ca88438c361025733dd917bbd /smtp.c | |
parent | 8e4bfa7520c919ec2a7b00067c3348f0d1c73c8d (diff) | |
download | fetchmail-9c10d69f36fed4962354b7a38261fe47f154ba2b.tar.gz fetchmail-9c10d69f36fed4962354b7a38261fe47f154ba2b.tar.bz2 fetchmail-9c10d69f36fed4962354b7a38261fe47f154ba2b.zip |
Fix MD5 compile on Solaris.
Diffstat (limited to 'smtp.c')
-rw-r--r-- | smtp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -98,7 +98,7 @@ static void SMTP_auth(int sock, char smtp_mode, char *username, char *password, if (outlevel >= O_DEBUG) report(stdout, GT_("Challenge decoded: %s\n"), b64buf); hmac_md5((unsigned char *)password, strlen(password), - b64buf, strlen(b64buf), digest, sizeof(digest)); + (unsigned char *)b64buf, strlen(b64buf), digest, sizeof(digest)); snprintf(tmp, sizeof(tmp), "%s %02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x", username, digest[0], digest[1], digest[2], digest[3], |