summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
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));
}