summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source4/lib/ldb/pyldb.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/source4/lib/ldb/pyldb.c b/source4/lib/ldb/pyldb.c
index acf8052127..eddc56f777 100644
--- a/source4/lib/ldb/pyldb.c
+++ b/source4/lib/ldb/pyldb.c
@@ -1442,13 +1442,11 @@ static int py_ldb_contains(PyLdbObject *self, PyObject *obj)
talloc_free(result);
- if (count == 1) {
- return 1;
- } else if (count == 0) {
+ if (count == 0) {
return 0;
}
- return -1;
+ return 1;
}
static PySequenceMethods py_ldb_seq = {