diff options
| author | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-26 11:30:03 +0000 |
|---|---|---|
| committer | Valery Febvre <vfebvre at easter-eggs.com> | 2004-07-26 11:30:03 +0000 |
| commit | 75eea32b80fb96d6dc563719458f64b1731a6118 (patch) | |
| tree | 042f0491fa11eb7d6f5724ad934962b762752621 /python | |
| parent | 20663807a87aee8eca257d83c8e8eaf34476a9d5 (diff) | |
| download | lasso-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.c | 2 |
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)); |
