diff options
author | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-10-23 17:23:44 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-10-25 11:24:54 +0100 |
commit | 1ea460b0b0dc4ee8a14c764e81f368d4f7e9ff45 (patch) | |
tree | 28ac468ec40edf0a8b9d5fc3981ac380915b066b /source4/lib/ldb/ldb_ildap | |
parent | 54bd30f70632b8fcbe164133d2479092b7262a29 (diff) | |
download | samba-1ea460b0b0dc4ee8a14c764e81f368d4f7e9ff45.tar.gz samba-1ea460b0b0dc4ee8a14c764e81f368d4f7e9ff45.tar.bz2 samba-1ea460b0b0dc4ee8a14c764e81f368d4f7e9ff45.zip |
ldb:backend "connect" functions - convert result values to LDB constants
I think this is better since "ldb_backend_connect" and "ldb_connect" which
propagate those values should return only LDB constants. Therefore a conversion
(especially for "-1") would be needed.
Diffstat (limited to 'source4/lib/ldb/ldb_ildap')
-rw-r--r-- | source4/lib/ldb/ldb_ildap/ldb_ildap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/ldb/ldb_ildap/ldb_ildap.c b/source4/lib/ldb/ldb_ildap/ldb_ildap.c index 352b7696d6..061238b277 100644 --- a/source4/lib/ldb/ldb_ildap/ldb_ildap.c +++ b/source4/lib/ldb/ldb_ildap/ldb_ildap.c @@ -771,7 +771,7 @@ static int ildb_connect(struct ldb_context *ldb, const char *url, struct loadparm_context *lp_ctx; module = ldb_module_new(ldb, ldb, "ldb_ildap backend", &ildb_ops); - if (!module) return -1; + if (!module) return LDB_ERR_OPERATIONS_ERROR; ildb = talloc(module, struct ildb_private); if (!ildb) { @@ -833,11 +833,11 @@ static int ildb_connect(struct ldb_context *ldb, const char *url, } *_module = module; - return 0; + return LDB_SUCCESS; failed: talloc_free(module); - return -1; + return LDB_ERR_OPERATIONS_ERROR; } _PUBLIC_ const struct ldb_backend_ops ldb_ldap_backend_ops = { |