From 91200b67bcb2f2e8ff2006407a264f64f86c9223 Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Wed, 28 Oct 2009 19:42:06 +0100 Subject: Allow sysdb_search_entry request to return more than one result --- server/db/sysdb.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'server/db/sysdb.h') diff --git a/server/db/sysdb.h b/server/db/sysdb.h index 5c15d3a1..00a3378c 100644 --- a/server/db/sysdb.h +++ b/server/db/sysdb.h @@ -321,7 +321,8 @@ struct tevent_req *sysdb_search_entry_send(TALLOC_CTX *mem_ctx, const char **attrs); int sysdb_search_entry_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx, - struct ldb_message **msg); + size_t *msgs_size, + struct ldb_message ***msgs); /* Search User (by uid or name) */ struct tevent_req *sysdb_search_user_by_name_send(TALLOC_CTX *mem_ctx, -- cgit