summaryrefslogtreecommitdiff
path: root/ctdb/client/client.h
diff options
context:
space:
mode:
authorAmitay Isaacs <amitay@gmail.com>2015-11-18 15:15:16 +1100
committerMartin Schwenke <martins@samba.org>2016-02-24 08:44:38 +0100
commitfbd3fd343bd0d1c6c03f8ae82ae79ad5580af421 (patch)
tree8fe3807055f17b5f7f19d6713320dbfb858c580a /ctdb/client/client.h
parentd23c5a6c2f365b249233f9a1c6d42d220b2b7c67 (diff)
downloadsamba-fbd3fd343bd0d1c6c03f8ae82ae79ad5580af421.tar.gz
ctdb-client: Remove TALLOC_CTX argument from sync functions
There is no allocated memory returned from these functions. Signed-off-by: Amitay Isaacs <amitay@gmail.com> Reviewed-by: Martin Schwenke <martin@meltin.net>
Diffstat (limited to 'ctdb/client/client.h')
-rw-r--r--ctdb/client/client.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/ctdb/client/client.h b/ctdb/client/client.h
index 82d543a2f6b..df0b9b8bee7 100644
--- a/ctdb/client/client.h
+++ b/ctdb/client/client.h
@@ -100,14 +100,12 @@ struct tevent_req *ctdb_client_remove_message_handler_send(
bool ctdb_client_remove_message_handler_recv(struct tevent_req *req,
int *perr);
-int ctdb_client_set_message_handler(TALLOC_CTX *mem_ctx,
- struct tevent_context *ev,
+int ctdb_client_set_message_handler(struct tevent_context *ev,
struct ctdb_client_context *client,
uint64_t srvid, srvid_handler_fn handler,
void *private_data);
-int ctdb_client_remove_message_handler(TALLOC_CTX *mem_ctx,
- struct tevent_context *ev,
+int ctdb_client_remove_message_handler(struct tevent_context *ev,
struct ctdb_client_context *client,
uint64_t srvid, void *private_data);