summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/common/ldb_dn.c
diff options
context:
space:
mode:
authorMatthias Dieter Wallnöfer <mwallnoefer@yahoo.de>2008-12-19 09:54:20 -0500
committerSimo Sorce <idra@samba.org>2008-12-19 09:54:20 -0500
commitdde0964d72abee7369514bec1bf75ba2407c331a (patch)
tree4db4e64bb0d7794d815779d1bad01d5a11f429ca /source4/lib/ldb/common/ldb_dn.c
parent45ad3df1405c5d978872d6de63df5059efcc181f (diff)
downloadsamba-dde0964d72abee7369514bec1bf75ba2407c331a.tar.gz
samba-dde0964d72abee7369514bec1bf75ba2407c331a.tar.bz2
samba-dde0964d72abee7369514bec1bf75ba2407c331a.zip
Small cosmetic LDB patch regarding return values.
It changes some "return 0" in "return LDB_SUCCESS"
Diffstat (limited to 'source4/lib/ldb/common/ldb_dn.c')
-rw-r--r--source4/lib/ldb/common/ldb_dn.c4
1 files changed, 2 insertions, 2 deletions
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)