From 8944a5f52d6d49ad646837e4595132500ddaccfe Mon Sep 17 00:00:00 2001 From: Valery Febvre Date: Mon, 2 Aug 2004 23:59:26 +0000 Subject: - Replaced some charPtrConst_wrap() calls by charPtr_wrap() - Added GPtrArray_wrap() function to wrap GPtrArray into Python list. - Added session_getattr() function, we can get now providerIDs and is_dirty properties of Session objects. --- python/protocols/py_authn_request.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/protocols/py_authn_request.c') diff --git a/python/protocols/py_authn_request.c b/python/protocols/py_authn_request.c index 71a188fa..579f7973 100644 --- a/python/protocols/py_authn_request.c +++ b/python/protocols/py_authn_request.c @@ -66,10 +66,10 @@ PyObject *authn_request_set_requestAuthnContext(PyObject *self, PyObject *args) return NULL; if (authnContextClassRefs_obj != Py_None) { - authnContextClassRefs = PythonStringList2_get(authnContextClassRefs_obj); + authnContextClassRefs = GPtrArray_get(authnContextClassRefs_obj); } if (authnContextStatementRefs_obj != Py_None) { - authnContextStatementRefs = PythonStringList2_get(authnContextStatementRefs_obj); + authnContextStatementRefs = GPtrArray_get(authnContextStatementRefs_obj); } lasso_authn_request_set_requestAuthnContext(LassoAuthnRequest_get(request_obj), -- cgit