diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-12-17 23:00:46 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-12-18 00:47:06 +0100 |
commit | fff18e0cc38dca018c44696a93fcd7356a823bba (patch) | |
tree | 0837d5ed2394729607706e7d45f803d9007ef88a /source4/lib/ldb/common | |
parent | f9fbe0874f9ef5fe70892d68749292821f4f4682 (diff) | |
download | samba-fff18e0cc38dca018c44696a93fcd7356a823bba.tar.gz samba-fff18e0cc38dca018c44696a93fcd7356a823bba.tar.bz2 samba-fff18e0cc38dca018c44696a93fcd7356a823bba.zip |
ldb: Rename two exported functions so they match abi_match.
Diffstat (limited to 'source4/lib/ldb/common')
-rw-r--r-- | source4/lib/ldb/common/ldb_controls.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |