diff options
Diffstat (limited to 'python/protocols/py_authn_request.c')
-rw-r--r-- | python/protocols/py_authn_request.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/protocols/py_authn_request.c b/python/protocols/py_authn_request.c index f52e95b3..a047f6c2 100644 --- a/python/protocols/py_authn_request.c +++ b/python/protocols/py_authn_request.c @@ -98,8 +98,8 @@ PyObject *authn_request_set_scoping(PyObject *self, PyObject *args) { /******************************************************************************/ PyObject *authn_request_get_protocolProfile(PyObject *self, PyObject *args) { - xmlChar *query; - xmlChar *protocolProfile; + gchar *query; + gchar *protocolProfile; if(!PyArg_ParseTuple(args, (char *) "s:authn_request_get_protocolProfile", &query)) |