summaryrefslogtreecommitdiffstats
path: root/python/environs/py_login.c
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-08-02 23:59:26 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-08-02 23:59:26 +0000
commit8944a5f52d6d49ad646837e4595132500ddaccfe (patch)
treedc6eccdfbc051cb043ddd57a7f8157e2fc62f8af /python/environs/py_login.c
parent2586368612f993fdaee361cdbd4df889f29972f9 (diff)
downloadlasso-8944a5f52d6d49ad646837e4595132500ddaccfe.tar.gz
lasso-8944a5f52d6d49ad646837e4595132500ddaccfe.tar.xz
lasso-8944a5f52d6d49ad646837e4595132500ddaccfe.zip
- 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.
Diffstat (limited to 'python/environs/py_login.c')
-rw-r--r--python/environs/py_login.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/environs/py_login.c b/python/environs/py_login.c
index 4a41be6d..862e7113 100644
--- a/python/environs/py_login.c
+++ b/python/environs/py_login.c
@@ -240,7 +240,7 @@ PyObject *login_dump(PyObject *self, PyObject *args) {
ret = lasso_login_dump(LassoLogin_get(login_obj));
- return (charPtrConst_wrap(ret));
+ return (charPtr_wrap(ret));
}
PyObject *login_init_authn_request(PyObject *self, PyObject *args) {