diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-07-06 20:41:10 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-07-06 22:45:33 +1000 |
commit | 8d99b398d923d924088d4682a97bae38ccda0b0d (patch) | |
tree | 463b6b9219a3545af169627e3469cb821a032997 /lib/ldb/pyldb.c | |
parent | 7285ed586f129d45843f98c359003d9ac88cf5cb (diff) | |
download | samba-8d99b398d923d924088d4682a97bae38ccda0b0d.tar.gz |
pyldb: Fix dn concat operation to be the other way around
This now concatonates Dn(ldb, "cn=config") + Dn(ldb, "dc=samba,dc=org") as "cn=config,dc=samba,dc=org"
Andrew Bartlett
Diffstat (limited to 'lib/ldb/pyldb.c')
-rw-r--r-- | lib/ldb/pyldb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ldb/pyldb.c b/lib/ldb/pyldb.c index 4554886e8da..9c8a70b5292 100644 --- a/lib/ldb/pyldb.c +++ b/lib/ldb/pyldb.c @@ -629,7 +629,7 @@ static PyObject *py_ldb_dn_concat(PyLdbDnObject *self, PyObject *py_other) } py_ret->mem_ctx = talloc_new(NULL); py_ret->dn = ldb_dn_copy(py_ret->mem_ctx, dn); - ldb_dn_add_child(py_ret->dn, other); + ldb_dn_add_base(py_ret->dn, other); return (PyObject *)py_ret; } |