summaryrefslogtreecommitdiff
path: root/source4/dsdb/pydsdb.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2011-11-11 16:35:59 +0100
committerStefan Metzmacher <metze@samba.org>2011-11-15 09:46:27 +0100
commit75ae19422b2b405cabe269c29afb61a1b50636d1 (patch)
treee6ca4fc28108dab7edf126ff3563870a9d9fc179 /source4/dsdb/pydsdb.c
parente6a9e1dda920d83c2926061e331d52aa9e9d0871 (diff)
downloadsamba-75ae19422b2b405cabe269c29afb61a1b50636d1.tar.gz
samba-75ae19422b2b405cabe269c29afb61a1b50636d1.tar.bz2
samba-75ae19422b2b405cabe269c29afb61a1b50636d1.zip
s4:dsdb/schema: pass and remember the schema_dn in dsdb_set_schema_from_ldif()
metze
Diffstat (limited to 'source4/dsdb/pydsdb.c')
-rw-r--r--source4/dsdb/pydsdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/dsdb/pydsdb.c b/source4/dsdb/pydsdb.c
index 62b5c8db83..3c7c8bfaa1 100644
--- a/source4/dsdb/pydsdb.c
+++ b/source4/dsdb/pydsdb.c
@@ -838,7 +838,7 @@ static PyObject *py_dsdb_set_schema_from_ldif(PyObject *self, PyObject *args)
PyErr_LDB_OR_RAISE(py_ldb, ldb);
- result = dsdb_set_schema_from_ldif(ldb, pf, df);
+ result = dsdb_set_schema_from_ldif(ldb, pf, df, dn);
PyErr_WERROR_IS_ERR_RAISE(result);
Py_RETURN_NONE;