diff options
Diffstat (limited to 'source4/lib/ldb/common')
-rw-r--r-- | source4/lib/ldb/common/ldb_attributes.c | 2 | ||||
-rw-r--r-- | source4/lib/ldb/common/ldb_dn.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/source4/lib/ldb/common/ldb_attributes.c b/source4/lib/ldb/common/ldb_attributes.c index 48f9e11caf..001bc45ee1 100644 --- a/source4/lib/ldb/common/ldb_attributes.c +++ b/source4/lib/ldb/common/ldb_attributes.c @@ -254,7 +254,7 @@ int ldb_dn_extended_add_syntax(struct ldb_context *ldb, ldb->schema.num_dn_extended_syntax = n; - return 0; + return LDB_SUCCESS; } /* diff --git a/source4/lib/ldb/common/ldb_dn.c b/source4/lib/ldb/common/ldb_dn.c index 13c01f4e70..02e21a2b25 100644 --- a/source4/lib/ldb/common/ldb_dn.c +++ b/source4/lib/ldb/common/ldb_dn.c @@ -1732,7 +1732,7 @@ int ldb_dn_set_extended_component(struct ldb_dn *dn, const char *name, const str dn->invalid = true; return LDB_ERR_OPERATIONS_ERROR; } - return 0; + return LDB_SUCCESS; } } } @@ -1757,7 +1757,7 @@ int ldb_dn_set_extended_component(struct ldb_dn *dn, const char *name, const str dn->extended_components = p; dn->extended_comp_num++; - return 0; + return LDB_SUCCESS; } void ldb_dn_remove_extended_components(struct ldb_dn *dn) |