diff options
Diffstat (limited to 'source4/scripting/python')
| -rw-r--r-- | source4/scripting/python/pyglue.c | 18 | ||||
| -rw-r--r-- | source4/scripting/python/samba/samdb.py | 2 | 
2 files changed, 1 insertions, 19 deletions
diff --git a/source4/scripting/python/pyglue.c b/source4/scripting/python/pyglue.c index 8d19b06ddf..bf6c30b5f8 100644 --- a/source4/scripting/python/pyglue.c +++ b/source4/scripting/python/pyglue.c @@ -117,22 +117,6 @@ static PyObject *py_set_debug_level(PyObject *self, PyObject *args)  	Py_RETURN_NONE;  } -static PyObject *py_dsdb_set_global_schema(PyObject *self, PyObject *args) -{ -	PyObject *py_ldb; -	struct ldb_context *ldb; -	int ret; -	if (!PyArg_ParseTuple(args, "O", &py_ldb)) -		return NULL; - -	PyErr_LDB_OR_RAISE(py_ldb, ldb); - -	ret = dsdb_set_global_schema(ldb); -	PyErr_LDB_ERROR_IS_ERR_RAISE(py_ldb_get_exception(), ret, ldb); - -	Py_RETURN_NONE; -} -  static PyObject *py_dsdb_set_schema_from_ldif(PyObject *self, PyObject *args)  {  	WERROR result; @@ -310,8 +294,6 @@ static PyMethodDef py_misc_methods[] = {  		"Generate random password with a length >= min and <= max." },  	{ "unix2nttime", (PyCFunction)py_unix2nttime, METH_VARARGS,  		"unix2nttime(timestamp) -> nttime" }, -	{ "dsdb_set_global_schema", (PyCFunction)py_dsdb_set_global_schema, METH_VARARGS, -		NULL },  	{ "dsdb_set_schema_from_ldif", (PyCFunction)py_dsdb_set_schema_from_ldif, METH_VARARGS,  		NULL },  	{ "dsdb_write_prefixes_from_schema_to_ldb", (PyCFunction)py_dsdb_write_prefixes_from_schema_to_ldb, METH_VARARGS, diff --git a/source4/scripting/python/samba/samdb.py b/source4/scripting/python/samba/samdb.py index 8d4c3deecd..5d20359690 100644 --- a/source4/scripting/python/samba/samdb.py +++ b/source4/scripting/python/samba/samdb.py @@ -48,7 +48,7 @@ class SamDB(samba.Ldb):                  options=options)          if global_schema: -            glue.dsdb_set_global_schema(self) +            dsdb.dsdb_set_global_schema(self)      def connect(self, url=None, flags=0, options=None):          super(SamDB, self).connect(url=self.lp.private_path(url), flags=flags,  | 
