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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/identity-provider/plugin_rest_identity_provider.c b/src/identity-provider/plugin_rest_identity_provider.c
index 207a15cc5..c0b018798 100644
--- a/src/identity-provider/plugin_rest_identity_provider.c
+++ b/src/identity-provider/plugin_rest_identity_provider.c
@@ -583,7 +583,7 @@ issue_token_cont (struct GNUNET_REST_RequestHandle *con,
583 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 583 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
584 "Request nonce: %s\n", 584 "Request nonce: %s\n",
585 nonce_str); 585 nonce_str);
586 sscanf (nonce_str, "%"SCNu64, &nonce); 586 GNUNET_assert (1 == sscanf (nonce_str, "%"SCNu64, &nonce));
587 587
588 //Get expiration for token from URL parameter 588 //Get expiration for token from URL parameter
589 GNUNET_CRYPTO_hash (GNUNET_IDENTITY_TOKEN_EXP_STRING, 589 GNUNET_CRYPTO_hash (GNUNET_IDENTITY_TOKEN_EXP_STRING,