From 7ffaa2afb9e03a6f0b9c602c0f03b2074ea33eac Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Sun, 14 Mar 2010 17:27:05 -0400 Subject: sysdb: convert sysdb_getpwnam --- src/python/pysss.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/python') diff --git a/src/python/pysss.c b/src/python/pysss.c index 48c5aea2e..cd5c588f3 100644 --- a/src/python/pysss.c +++ b/src/python/pysss.c @@ -268,7 +268,7 @@ static PyObject *py_sss_useradd(PySssLocalObject *self, tctx->sysdb, tctx->octx->name, tctx->local, - &tctx->octx); + tctx->octx); if (ret != EOK) { PyErr_SetSssError(ret); goto fail; @@ -375,7 +375,7 @@ static PyObject *py_sss_userdel(PySssLocalObject *self, tctx->sysdb, tctx->octx->name, tctx->local, - &tctx->octx); + tctx->octx); if (ret != EOK) { PyErr_SetSssError(ret); goto fail; -- cgit