From: Aki Tuomi Date: Thu, 13 Aug 2020 16:13:49 +0000 (+0300) Subject: auth: test-mech - Fix type mismatch X-Git-Tag: 2.3.13~342 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68817df1ef029913e9fab9f4da75ba8150c65eb6;p=thirdparty%2Fdovecot%2Fcore.git auth: test-mech - Fix type mismatch --- diff --git a/src/auth/test-mech.c b/src/auth/test-mech.c index 0a030a2be0..0a22ff46d0 100644 --- a/src/auth/test-mech.c +++ b/src/auth/test-mech.c @@ -192,7 +192,7 @@ static void test_mech_handle_challenge(struct auth_request *request, } static inline const unsigned char * -test_mech_construct_apop_challenge(unsigned int connect_uid, unsigned long *len_r) +test_mech_construct_apop_challenge(unsigned int connect_uid, size_t *len_r) { string_t *apop_challenge = t_str_new(128); @@ -323,7 +323,7 @@ static void test_mechs(void) struct test_case *test_case = &tests[running_test]; const struct mech_module *mech = test_case->mech; struct auth_request *request; - const char *testname = t_strdup_printf("auth mech %s %d/%lu", + const char *testname = t_strdup_printf("auth mech %s %d/%zu", mech->mech_name, running_test+1, N_ELEMENTS(tests));