From fff18e0cc38dca018c44696a93fcd7356a823bba Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 17 Dec 2010 23:00:46 +0100 Subject: ldb: Rename two exported functions so they match abi_match. --- source4/lib/ldb/common/ldb_controls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/lib/ldb/common/ldb_controls.c') diff --git a/source4/lib/ldb/common/ldb_controls.c b/source4/lib/ldb/common/ldb_controls.c index 99154aa7d9..cee248a7c6 100644 --- a/source4/lib/ldb/common/ldb_controls.c +++ b/source4/lib/ldb/common/ldb_controls.c @@ -74,7 +74,7 @@ struct ldb_control *ldb_reply_get_control(struct ldb_reply *rep, const char *oid /* saves the current controls list into the "saver" and replace the one in req with a new one excluding the "exclude" control */ /* returns 0 on error */ -int save_controls(struct ldb_control *exclude, struct ldb_request *req, struct ldb_control ***saver) +int ldb_save_controls(struct ldb_control *exclude, struct ldb_request *req, struct ldb_control ***saver) { struct ldb_control **lcs; unsigned int i, j; @@ -145,7 +145,7 @@ struct ldb_control **controls_except_specified(struct ldb_control **controls_in, /* check if there's any control marked as critical in the list */ /* return True if any, False if none */ -int check_critical_controls(struct ldb_control **controls) +int ldb_check_critical_controls(struct ldb_control **controls) { unsigned int i; -- cgit