From a921bdc7116328dd8d1752f6e87a93920910e3f8 Mon Sep 17 00:00:00 2001
From: Philipp Takacs <philipp@bureaucracy.de>
Date: Sat, 21 Mar 2026 14:34:01 +0100
Subject: [PATCH 5/6] add missing break in handle_response

This caused that all lookups are responded with an error
---
 table_ldap.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/table_ldap.c b/table_ldap.c
index 01d4ecb..b3348d4 100644
--- a/table_ldap.c
+++ b/table_ldap.c
@@ -297,6 +297,7 @@ ldap_handle_response(const char *ldapid, const struct aldap_message *m, struct r
 			table_api_free_request(req);
 			break;
 		}
+		break;
 	default:
 		table_api_error(req->id, req->o, NULL);
 		dict_pop(&requests, ldapid);
-- 
2.52.0

