The branch, master has been updated
via 843be3b... ldb_init: use constant for result of
"ldb_setup_wellknown_attributes"
from cd16e38... s3: Register the ndr_interfaces dynamically
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit 843be3bcd9b07ba937944aee206bd4ecdfd65504
Author: Matthias Dieter Wallnöfer <[email protected]>
Date: Sat Nov 7 10:18:26 2009 +0100
ldb_init: use constant for result of "ldb_setup_wellknown_attributes"
-----------------------------------------------------------------------
Summary of changes:
source4/lib/ldb/common/ldb.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source4/lib/ldb/common/ldb.c b/source4/lib/ldb/common/ldb.c
index 732d100..20e3206 100644
--- a/source4/lib/ldb/common/ldb.c
+++ b/source4/lib/ldb/common/ldb.c
@@ -102,7 +102,7 @@ struct ldb_context *ldb_init(TALLOC_CTX *mem_ctx, struct
tevent_context *ev_ctx)
}
ret = ldb_setup_wellknown_attributes(ldb);
- if (ret != 0) {
+ if (ret != LDB_SUCCESS) {
talloc_free(ldb);
return NULL;
}
--
Samba Shared Repository