From 633c3e8da5a3a5ee1b61f9045c7dedb39bbb668a Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 17 Jan 2011 13:11:08 +1100 Subject: ldb: added ldb_req_mark_trusted() this is used to mark a ldb child request trusted, if the caller has validated all inputs. This will be used when creating new child requests with trusted inputs. Pair-Programmed-With: Andrew Bartlett --- source4/lib/ldb/include/ldb_module.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source4/lib/ldb/include/ldb_module.h') diff --git a/source4/lib/ldb/include/ldb_module.h b/source4/lib/ldb/include/ldb_module.h index 35dbd120fa..a793525b7c 100644 --- a/source4/lib/ldb/include/ldb_module.h +++ b/source4/lib/ldb/include/ldb_module.h @@ -227,6 +227,11 @@ int ldb_reply_add_control(struct ldb_reply *ares, const char *oid, bool critical */ void ldb_req_mark_untrusted(struct ldb_request *req); +/** + mark a request as trusted. + */ +void ldb_req_mark_trusted(struct ldb_request *req); + /** return true is a request is untrusted */ -- cgit