From 8a1738f9379a1b8fb5c95c3df649e014ff5a1434 Mon Sep 17 00:00:00 2001 From: Jan Zeleny Date: Wed, 18 May 2011 10:06:19 -0400 Subject: sysdb refactoring: deleted domain variables in sysdb API The patch also updates code using modified functions. Tests have also been adjusted. --- src/python/pysss.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/python') diff --git a/src/python/pysss.c b/src/python/pysss.c index 02f69644c..bd965fdf1 100644 --- a/src/python/pysss.c +++ b/src/python/pysss.c @@ -257,7 +257,6 @@ static PyObject *py_sss_useradd(PySssLocalObject *self, ret = sysdb_getpwnam_sync(tctx, tctx->sysdb, tctx->octx->name, - tctx->local, tctx->octx); if (ret != EOK) { PyErr_SetSssError(ret); @@ -363,7 +362,6 @@ static PyObject *py_sss_userdel(PySssLocalObject *self, ret = sysdb_getpwnam_sync(tctx, tctx->sysdb, tctx->octx->name, - tctx->local, tctx->octx); if (ret != EOK) { PyErr_SetSssError(ret); -- cgit