diff options
author | Anatoliy Atanasov <anatoliy.atanasov@postpath.com> | 2010-05-11 11:35:54 +0300 |
---|---|---|
committer | Anatoliy Atanasov <anatoliy.atanasov@postpath.com> | 2010-05-11 12:54:18 +0300 |
commit | 7200c25646d1c34dd1ce723ab4fba3c40c89b6b0 (patch) | |
tree | 2b61f311b056636a3e51bd89234459f0e59cc982 /source4/dsdb | |
parent | 8489934ce3cb1d11f94abab81ccdd00ee74d3d44 (diff) | |
download | samba-7200c25646d1c34dd1ce723ab4fba3c40c89b6b0.tar.gz samba-7200c25646d1c34dd1ce723ab4fba3c40c89b6b0.tar.bz2 samba-7200c25646d1c34dd1ce723ab4fba3c40c89b6b0.zip |
Revert "s4-rodc: Fix provision warnings by creating ntds objectGUID in provision"
This reverts commit c3cbb846d0bfbaa11fd255bada7fa5fe502d4d96.
The fix is not correct, we should cache a bool to answer amIRODC
Diffstat (limited to 'source4/dsdb')
-rw-r--r-- | source4/dsdb/pydsdb.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/source4/dsdb/pydsdb.c b/source4/dsdb/pydsdb.c index c92eec2aaf..45f8b6e1ca 100644 --- a/source4/dsdb/pydsdb.c +++ b/source4/dsdb/pydsdb.c @@ -309,26 +309,6 @@ static PyObject *py_samdb_ntds_objectGUID(PyObject *self, PyObject *args) return result; } -static PyObject *py_dsdb_set_ntds_objectGUID(PyObject *self, PyObject *args) -{ - PyObject *py_ldb, *py_guid; - bool ret; - struct GUID guid; - struct ldb_context *ldb; - if (!PyArg_ParseTuple(args, "OO", &py_ldb, &py_guid)) - return NULL; - - PyErr_LDB_OR_RAISE(py_ldb, ldb); - GUID_from_string(PyString_AsString(py_guid), &guid); - - ret = samdb_set_ntds_objectGUID(ldb, &guid); - if (!ret) { - PyErr_SetString(PyExc_RuntimeError, "set_ntds_objectGUID failed"); - return NULL; - } - Py_RETURN_NONE; -} - static PyObject *py_dsdb_set_global_schema(PyObject *self, PyObject *args) { PyObject *py_ldb; @@ -419,9 +399,6 @@ static PyMethodDef py_dsdb_methods[] = { NULL }, { "samdb_ntds_objectGUID", (PyCFunction)py_samdb_ntds_objectGUID, METH_VARARGS, "get the NTDS objectGUID as a string"}, - { "dsdb_set_ntds_objectGUID", - (PyCFunction)py_dsdb_set_ntds_objectGUID, METH_VARARGS, - NULL }, { "dsdb_set_global_schema", (PyCFunction)py_dsdb_set_global_schema, METH_VARARGS, NULL }, { "dsdb_load_partition_usn", (PyCFunction)py_dsdb_load_partition_usn, |