From 1ea460b0b0dc4ee8a14c764e81f368d4f7e9ff45 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Fri, 23 Oct 2009 17:23:44 +0200 Subject: 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. --- source4/lib/ldb/ldb_ildap/ldb_ildap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/lib/ldb/ldb_ildap/ldb_ildap.c') 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 = { -- cgit