From 167a1c53e8af94c8ea39927736ed1f4d3d32145d Mon Sep 17 00:00:00 2001 From: TenGbps <30792994+TenGbps@users.noreply.github.com> Date: Thu, 21 May 2020 17:46:26 +0200 Subject: [PATCH] Update sasl.c Some this the realm are long, if is too long is getting a #392 --- sasl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sasl.c b/sasl.c index 1a421b1..8e4cf50 100644 --- a/sasl.c +++ b/sasl.c @@ -271,7 +271,7 @@ char *sasl_digest_md5(char *result, char *login, char *pass, char *buffer, char int32_t array_size = 10; unsigned char response[MD5_DIGEST_LENGTH]; char *array[array_size]; - char buffer2[500], buffer3[500], nonce[200], realm[50], algo[20]; + char buffer2[500], buffer3[500], nonce[200], realm[200], algo[20]; int32_t i = 0, ind = 0, lastpos = 0, currentpos = 0, intq = 0, auth_find = 0; MD5_CTX md5c; char *preplogin;