From: Gökhan Şengün Date: Fri, 30 Mar 2012 20:19:38 +0000 (+0300) Subject: smtp: Cody tidy up of md5 digest length X-Git-Tag: curl-7_26_0~108 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9bae9ddad91398c3e1f241523d35b823557898ef;p=curl smtp: Cody tidy up of md5 digest length Replaced the hard coded md5 digest length (16) with a preprocessor constant --- diff --git a/lib/smtp.c b/lib/smtp.c index 08fe86f24..45dec6a49 100644 --- a/lib/smtp.c +++ b/lib/smtp.c @@ -743,8 +743,8 @@ static CURLcode smtp_state_authcram_resp(struct connectdata *conn, size_t len = 0; char *rplyb64 = NULL; HMAC_context *ctxt; - unsigned char digest[16]; - char reply[MAX_CURL_USER_LENGTH + 32 /* 2 * size of MD5 digest */ + 1]; + unsigned char digest[MD5_DIGEST_LEN]; + char reply[MAX_CURL_USER_LENGTH + 2 * MD5_DIGEST_LEN + 1]; (void)instate; /* no use for this yet */