summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-07-26 11:30:03 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-07-26 11:30:03 +0000
commit75eea32b80fb96d6dc563719458f64b1731a6118 (patch)
tree042f0491fa11eb7d6f5724ad934962b762752621 /python
parent20663807a87aee8eca257d83c8e8eaf34476a9d5 (diff)
downloadlasso-75eea32b80fb96d6dc563719458f64b1731a6118.tar.gz
lasso-75eea32b80fb96d6dc563719458f64b1731a6118.tar.xz
lasso-75eea32b80fb96d6dc563719458f64b1731a6118.zip
Removed nameIdentifier attribute in Logout object
There is already a nameIdientifier attribute in ProfileContext class
Diffstat (limited to 'python')
-rw-r--r--python/environs/py_logout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/environs/py_logout.c b/python/environs/py_logout.c
index 44beca6a..f2aef5a1 100644
--- a/python/environs/py_logout.c
+++ b/python/environs/py_logout.c
@@ -64,7 +64,7 @@ PyObject *logout_getattr(PyObject *self, PyObject *args) {
if (!strcmp(attr, "msg_body"))
return (charPtrConst_wrap(LASSO_PROFILE_CONTEXT(logout)->msg_body));
if (!strcmp(attr, "nameIdentifier"))
- return (charPtrConst_wrap(logout->nameIdentifier));
+ return (charPtrConst_wrap(LASSO_PROFILE_CONTEXT(logout)->nameIdentifier));
if (!strcmp(attr, "msg_relayState"))
return (charPtrConst_wrap(LASSO_PROFILE_CONTEXT(logout)->msg_relayState));