From 6aca93fb4d5d39a100b900a8c297d08629407960 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 23 Jun 2009 23:00:08 -0400 Subject: Rename sysdb_req to sysdb_handle. This sysdb_req has always really been a transaction handle and not a request. This is part of a set of patches to rewrite transaction support in sysdb to a hopefully better API, that will also let use use tevent_req async style to manipulate our cache. --- server/db/sysdb_private.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'server/db/sysdb_private.h') diff --git a/server/db/sysdb_private.h b/server/db/sysdb_private.h index a4e83e0ab..8c10d9519 100644 --- a/server/db/sysdb_private.h +++ b/server/db/sysdb_private.h @@ -68,15 +68,15 @@ #include "db/sysdb.h" -struct sysdb_req; +struct sysdb_handle; struct sysdb_ctx { struct tevent_context *ev; struct ldb_context *ldb; char *ldb_file; - struct sysdb_req *queue; + struct sysdb_handle *queue; }; -bool sysdb_req_check_running(struct sysdb_req *req); +bool sysdb_handle_check_running(struct sysdb_handle *handle); #endif /* __INT_SYS_DB_H__ */ -- cgit