aboutsummaryrefslogtreecommitdiff
path: root/src/revocation/revocation_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/revocation/revocation_api.c')
-rw-r--r--src/revocation/revocation_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/revocation/revocation_api.c b/src/revocation/revocation_api.c
index fde0296a4..ef659baa0 100644
--- a/src/revocation/revocation_api.c
+++ b/src/revocation/revocation_api.c
@@ -91,7 +91,7 @@ handle_revocation_query_response (void *cls,
91 91
92 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 92 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
93 "Revocation query result: %d\n", 93 "Revocation query result: %d\n",
94 ntohl (qrm->is_valid)); 94 (uint32_t) ntohl (qrm->is_valid));
95 q->func (q->func_cls, 95 q->func (q->func_cls,
96 ntohl (qrm->is_valid)); 96 ntohl (qrm->is_valid));
97 GNUNET_REVOCATION_query_cancel (q); 97 GNUNET_REVOCATION_query_cancel (q);
@@ -225,7 +225,7 @@ handle_revocation_response (void *cls,
225 225
226 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 226 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
227 "Revocation transmission result: %d\n", 227 "Revocation transmission result: %d\n",
228 ntohl (rrm->is_valid)); 228 (uint32_t) ntohl (rrm->is_valid));
229 h->func (h->func_cls, 229 h->func (h->func_cls,
230 ntohl (rrm->is_valid)); 230 ntohl (rrm->is_valid));
231 GNUNET_REVOCATION_revoke_cancel (h); 231 GNUNET_REVOCATION_revoke_cancel (h);