From 379df4cb7e9a458d168ed601c5f0b2d2787d577b Mon Sep 17 00:00:00 2001 From: Nicolas Clapies Date: Thu, 5 Aug 2004 16:05:38 +0000 Subject: fix in lecp --- python/environs/py_lecp.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'python') 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)); } -- cgit