diff options
| author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-08-02 23:59:26 +0000 |
|---|---|---|
| committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-08-02 23:59:26 +0000 |
| commit | 8944a5f52d6d49ad646837e4595132500ddaccfe (patch) | |
| tree | dc6eccdfbc051cb043ddd57a7f8157e2fc62f8af /python/environs/py_logout.c | |
| parent | 2586368612f993fdaee361cdbd4df889f29972f9 (diff) | |
| download | lasso-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_logout.c')
| -rw-r--r-- | python/environs/py_logout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/environs/py_logout.c b/python/environs/py_logout.c index 22681d7c..4038dce5 100644 --- a/python/environs/py_logout.c +++ b/python/environs/py_logout.c @@ -154,7 +154,7 @@ PyObject *logout_get_next_providerID(PyObject *self, PyObject *args) { remote_providerID = lasso_logout_get_next_providerID(LassoLogout_get(logout_obj)); - return (charPtrConst_wrap(remote_providerID)); + return (charPtr_wrap(remote_providerID)); } PyObject *logout_init_request(PyObject *self, PyObject *args) { |
