]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
Unblock the client when we can't find an upstream
authorOndřej Kuzník <ondra@mistotebe.net>
Tue, 27 Jun 2017 14:31:31 +0000 (15:31 +0100)
committerOndřej Kuzník <okuznik@symas.com>
Tue, 17 Nov 2020 17:55:46 +0000 (17:55 +0000)
If we can't find an upstream, we keep the client around, so it needs to
be unblocked.

servers/lloadd/operation.c

index f7fd24da9ffef241bd209e28bc8247d3df0f75fa..5f2f66e9a27dd5be15269dc5f1d18121a8a5380f 100644 (file)
@@ -773,5 +773,5 @@ fail:
     op->o_client_refcnt--;
     operation_destroy_from_client( op );
     CLIENT_UNLOCK_OR_DESTROY(client);
-    return -1;
+    return rc;
 }