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/include | |
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/include')
-rw-r--r-- | source4/lib/ldb/include/ldb_module.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source4/lib/ldb/include/ldb_module.h b/source4/lib/ldb/include/ldb_module.h index 01514683b2..836c562dfc 100644 --- a/source4/lib/ldb/include/ldb_module.h +++ b/source4/lib/ldb/include/ldb_module.h @@ -121,15 +121,14 @@ int ldb_any_comparison(struct ldb_context *ldb, void *mem_ctx, const struct ldb_val *v2); /* The following definitions come from lib/ldb/common/ldb_controls.c */ -struct ldb_control *get_control_from_list(struct ldb_control **controls, const char *oid); -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); /* Returns a list of controls, except the one specified. Included * controls become a child of returned list if they were children of * controls_in */ struct ldb_control **controls_except_specified(struct ldb_control **controls_in, TALLOC_CTX *mem_ctx, struct ldb_control *exclude); -int check_critical_controls(struct ldb_control **controls); +int ldb_check_critical_controls(struct ldb_control **controls); /* The following definitions come from lib/ldb/common/ldb_ldif.c */ int ldb_should_b64_encode(struct ldb_context *ldb, const struct ldb_val *val); |