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 e03f502ad..907b28ba9 100644
--- a/src/identity-provider/plugin_rest_identity_provider.c
+++ b/src/identity-provider/plugin_rest_identity_provider.c
@@ -580,6 +580,7 @@ issue_token_cont (struct GNUNET_REST_RequestHandle *con,
580 } 580 }
581 nonce_str = GNUNET_CONTAINER_multihashmap_get (handle->conndata_handle->url_param_map, 581 nonce_str = GNUNET_CONTAINER_multihashmap_get (handle->conndata_handle->url_param_map,
582 &key); 582 &key);
583 GNUNET_assert (NULL != nonce_str);
583 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 584 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
584 "Request nonce: %s\n", 585 "Request nonce: %s\n",
585 nonce_str); 586 nonce_str);
@@ -794,6 +795,7 @@ list_token_cont (struct GNUNET_REST_RequestHandle *con_handle,
794 } 795 }
795 ego_val = GNUNET_CONTAINER_multihashmap_get (handle->conndata_handle->url_param_map, 796 ego_val = GNUNET_CONTAINER_multihashmap_get (handle->conndata_handle->url_param_map,
796 &key); 797 &key);
798 GNUNET_assert (NULL != ego_val);
797 //Remove non-matching egos 799 //Remove non-matching egos
798 for (ego_entry = handle->ego_head; 800 for (ego_entry = handle->ego_head;
799 NULL != ego_entry;) 801 NULL != ego_entry;)
@@ -866,6 +868,7 @@ exchange_cont (void *cls,
866 } 868 }
867 nonce_str = GNUNET_CONTAINER_multihashmap_get (handle->conndata_handle->url_param_map, 869 nonce_str = GNUNET_CONTAINER_multihashmap_get (handle->conndata_handle->url_param_map,
868 &key); 870 &key);
871 GNUNET_assert (NULL != nonce_str);
869 GNUNET_assert (1 == sscanf (nonce_str, "%"SCNu64, &expected_nonce)); 872 GNUNET_assert (1 == sscanf (nonce_str, "%"SCNu64, &expected_nonce));
870 873
871 if (ticket_nonce != expected_nonce) 874 if (ticket_nonce != expected_nonce)