From f1f5854566c1ee44320a1111a33c12bcc409f00a Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Tue, 21 Apr 2015 09:34:24 +0200 Subject: LDAP: return after tevent_req_error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Lukáš Slebodník --- src/providers/ldap/sdap_async_connection.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/providers/ldap/sdap_async_connection.c b/src/providers/ldap/sdap_async_connection.c index bffe787c..15232efa 100644 --- a/src/providers/ldap/sdap_async_connection.c +++ b/src/providers/ldap/sdap_async_connection.c @@ -1218,6 +1218,7 @@ static void sdap_kinit_done(struct tevent_req *subreq) DEBUG(SSSDBG_OP_FAILURE, "Unable to set env. variable KRB5CCNAME!\n"); tevent_req_error(req, ERR_AUTH_FAILED); + return; } state->expire_time = expire_time; -- cgit