aboutsummaryrefslogtreecommitdiff
path: root/src/identity-provider/plugin_rest_identity_provider.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/identity-provider/plugin_rest_identity_provider.c')
-rw-r--r--src/identity-provider/plugin_rest_identity_provider.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/identity-provider/plugin_rest_identity_provider.c b/src/identity-provider/plugin_rest_identity_provider.c
index cd0c76989..5ea7b2821 100644
--- a/src/identity-provider/plugin_rest_identity_provider.c
+++ b/src/identity-provider/plugin_rest_identity_provider.c
@@ -602,6 +602,7 @@ issue_token_cont (struct GNUNET_REST_RequestHandle *con,
602 } 602 }
603 nonce_str = GNUNET_CONTAINER_multihashmap_get (handle->conndata_handle->url_param_map, 603 nonce_str = GNUNET_CONTAINER_multihashmap_get (handle->conndata_handle->url_param_map,
604 &key); 604 &key);
605 GNUNET_assert (NULL != nonce_str);
605 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 606 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
606 "Request nonce: %s\n", 607 "Request nonce: %s\n",
607 nonce_str); 608 nonce_str);
@@ -817,6 +818,7 @@ list_token_cont (struct GNUNET_REST_RequestHandle *con_handle,
817 } 818 }
818 ego_val = GNUNET_CONTAINER_multihashmap_get (handle->conndata_handle->url_param_map, 819 ego_val = GNUNET_CONTAINER_multihashmap_get (handle->conndata_handle->url_param_map,
819 &key); 820 &key);
821 GNUNET_assert (NULL != ego_val);
820 //Remove non-matching egos 822 //Remove non-matching egos
821 for (ego_entry = handle->ego_head; 823 for (ego_entry = handle->ego_head;
822 NULL != ego_entry;) 824 NULL != ego_entry;)
@@ -889,6 +891,7 @@ exchange_cont (void *cls,
889 } 891 }
890 nonce_str = GNUNET_CONTAINER_multihashmap_get (handle->conndata_handle->url_param_map, 892 nonce_str = GNUNET_CONTAINER_multihashmap_get (handle->conndata_handle->url_param_map,
891 &key); 893 &key);
894 GNUNET_assert (NULL != nonce_str);
892 GNUNET_assert (1 == sscanf (nonce_str, "%"SCNu64, &expected_nonce)); 895 GNUNET_assert (1 == sscanf (nonce_str, "%"SCNu64, &expected_nonce));
893 896
894 if (ticket_nonce != expected_nonce) 897 if (ticket_nonce != expected_nonce)