From: Arran Cudbard-Bell Date: Fri, 24 Sep 2021 20:21:59 +0000 (-0500) Subject: Fix another timeout arg X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9be32e70ade85e84e2db2688534c4ce91d490223;p=thirdparty%2Ffreeradius-server.git Fix another timeout arg --- diff --git a/src/lib/ldap/sasl.c b/src/lib/ldap/sasl.c index be03ee5a5b..ad121c45dc 100644 --- a/src/lib/ldap/sasl.c +++ b/src/lib/ldap/sasl.c @@ -127,7 +127,8 @@ static void _ldap_sasl_bind_io_read(fr_event_list_t *el, int fd, UNUSED int flag * If LDAP parse result indicates there was an error * then we're done. */ - status = fr_ldap_result(&sasl_ctx->result, NULL, c, sasl_ctx->msgid, LDAP_MSG_ALL, sasl_ctx->identity, 0); + status = fr_ldap_result(&sasl_ctx->result, NULL, c, sasl_ctx->msgid, LDAP_MSG_ALL, + sasl_ctx->identity, fr_time_delta_wrap(0)); switch (status) { case LDAP_PROC_SUCCESS: case LDAP_PROC_CONTINUE: