summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorNicolas Clapies <nclapies@entrouvert.com>2004-08-05 16:05:38 +0000
committerNicolas Clapies <nclapies@entrouvert.com>2004-08-05 16:05:38 +0000
commit379df4cb7e9a458d168ed601c5f0b2d2787d577b (patch)
tree12259f491afe0a577406bcc63faf8c73198492eb /python
parente13598de344aa011bfb4537716b0dea6e0e6f566 (diff)
downloadlasso-379df4cb7e9a458d168ed601c5f0b2d2787d577b.tar.gz
lasso-379df4cb7e9a458d168ed601c5f0b2d2787d577b.tar.xz
lasso-379df4cb7e9a458d168ed601c5f0b2d2787d577b.zip
fix in lecp
Diffstat (limited to 'python')
-rw-r--r--python/environs/py_lecp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/environs/py_lecp.c b/python/environs/py_lecp.c
index 301c79a5..9aa8ae58 100644
--- a/python/environs/py_lecp.c
+++ b/python/environs/py_lecp.c
@@ -217,8 +217,8 @@ PyObject *lecp_process_authn_request_envelope_msg(PyObject *self, PyObject *args
}
else return NULL;
- ret = lecp_process_authn_request_envelope_msg(LassoLecp_get(lecp_obj),
- remote_providerID);
+ ret = lasso_lecp_process_authn_request_envelope_msg(LassoLecp_get(lecp_obj),
+ remote_providerID);
return (int_wrap(ret));
}
@@ -235,8 +235,8 @@ PyObject *lecp_process_authn_response_envelope_msg(PyObject *self, PyObject *arg
}
else return NULL;
- ret = lecp_process_authn_response_envelope_msg(LassoLecp_get(lecp_obj),
- remote_providerID);
+ ret = lasso_lecp_process_authn_response_envelope_msg(LassoLecp_get(lecp_obj),
+ remote_providerID);
return (int_wrap(ret));
}