Changeset: e246db3fe09e for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/e246db3fe09e
Modified Files:
        common/utils/mcrypt.c
Branch: Jul2021
Log Message:

Compilation fix


diffs (12 lines):

diff --git a/common/utils/mcrypt.c b/common/utils/mcrypt.c
--- a/common/utils/mcrypt.c
+++ b/common/utils/mcrypt.c
@@ -432,7 +432,7 @@ mcrypt_hashPassword(
                SHA512Context sc;
                SHA512Reset(&sc);
                SHA512Input(&sc, (const uint8_t *) password, (unsigned int) 
strlen(password));
-               SHA512Input(&sc, (const uint8_t *) challenge, 
strlen(challenge));
+               SHA512Input(&sc, (const uint8_t *) challenge, (unsigned int) 
strlen(challenge));
                SHA512Result(&sc, md);
 #endif
 
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to