aboutsummaryrefslogtreecommitdiff
path: root/src/credential
diff options
context:
space:
mode:
Diffstat (limited to 'src/credential')
-rw-r--r--src/credential/credential_api.c2
-rw-r--r--src/credential/gnunet-credential.c2
-rw-r--r--src/credential/plugin_rest_credential.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/credential/credential_api.c b/src/credential/credential_api.c
index fd0c9e3d5..ca54137ad 100644
--- a/src/credential/credential_api.c
+++ b/src/credential/credential_api.c
@@ -348,7 +348,7 @@ GNUNET_CREDENTIAL_disconnect (struct GNUNET_CREDENTIAL_Handle *handle)
348 * @param lr the verify request to cancel 348 * @param lr the verify request to cancel
349 */ 349 */
350void 350void
351GNUNET_CREDENTIAL_verify_cancel (struct GNUNET_CREDENTIAL_Request *vr) 351GNUNET_CREDENTIAL_request_cancel (struct GNUNET_CREDENTIAL_Request *vr)
352{ 352{
353 struct GNUNET_CREDENTIAL_Handle *handle = vr->credential_handle; 353 struct GNUNET_CREDENTIAL_Handle *handle = vr->credential_handle;
354 354
diff --git a/src/credential/gnunet-credential.c b/src/credential/gnunet-credential.c
index 92804c97a..4a6dc5ccd 100644
--- a/src/credential/gnunet-credential.c
+++ b/src/credential/gnunet-credential.c
@@ -130,7 +130,7 @@ do_shutdown (void *cls)
130{ 130{
131 if (NULL != verify_request) 131 if (NULL != verify_request)
132 { 132 {
133 GNUNET_CREDENTIAL_verify_cancel (verify_request); 133 GNUNET_CREDENTIAL_request_cancel (verify_request);
134 verify_request = NULL; 134 verify_request = NULL;
135 } 135 }
136 if (NULL != credential) 136 if (NULL != credential)
diff --git a/src/credential/plugin_rest_credential.c b/src/credential/plugin_rest_credential.c
index 59022e794..48d48fba0 100644
--- a/src/credential/plugin_rest_credential.c
+++ b/src/credential/plugin_rest_credential.c
@@ -177,7 +177,7 @@ cleanup_handle (struct RequestHandle *handle)
177 if (NULL != handle->subject_attr) 177 if (NULL != handle->subject_attr)
178 GNUNET_free (handle->subject_attr); 178 GNUNET_free (handle->subject_attr);
179 if (NULL != handle->verify_request) 179 if (NULL != handle->verify_request)
180 GNUNET_CREDENTIAL_verify_cancel (handle->verify_request); 180 GNUNET_CREDENTIAL_request_cancel (handle->verify_request);
181 if (NULL != handle->credential) 181 if (NULL != handle->credential)
182 GNUNET_CREDENTIAL_disconnect (handle->credential); 182 GNUNET_CREDENTIAL_disconnect (handle->credential);
183 if (NULL != handle->id_op) 183 if (NULL != handle->id_op)