X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=imap%2Fauth_cram.c;h=e4ea149534c596900eda8c0a0e38c14ac57e352b;hb=ecaab35b973fbceb58b5ed174971c82762cc0199;hp=4a54f48ec8ad1089075df315c8743843706aeda5;hpb=a8477ebaa09990b3688164cbe5cf661c4189541d;p=apps%2Fmadmutt.git diff --git a/imap/auth_cram.c b/imap/auth_cram.c index 4a54f48..e4ea149 100644 --- a/imap/auth_cram.c +++ b/imap/auth_cram.c @@ -21,7 +21,7 @@ #define MD5_BLOCK_LEN 64 #define MD5_DIGEST_LEN 16 -#include "lib/intl.h" +#include #include "lib/debug.h" /* forward declarations */ @@ -101,7 +101,7 @@ imap_auth_res_t imap_auth_cram_md5 (IMAP_DATA * idata, const char *method) */ mutt_to_base64 ((unsigned char *) ibuf, (unsigned char *) obuf, - str_len (obuf), sizeof (ibuf) - 2); + m_strlen(obuf), sizeof (ibuf) - 2); str_cat (ibuf, sizeof (ibuf), "\r\n"); mutt_socket_write (idata->conn, ibuf); @@ -134,8 +134,8 @@ static void hmac_md5 (const char *password, char *challenge, unsigned int secret_len, chal_len; int i; - secret_len = str_len (password); - chal_len = str_len (challenge); + secret_len = m_strlen(password); + chal_len = m_strlen(challenge); /* passwords longer than MD5_BLOCK_LEN bytes are substituted with their MD5 * digests */