aboutsummaryrefslogtreecommitdiff
path: root/src/reclaim/oidc_helper.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/reclaim/oidc_helper.c')
-rw-r--r--src/reclaim/oidc_helper.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/reclaim/oidc_helper.c b/src/reclaim/oidc_helper.c
index 4769ed2d1..d47460edf 100644
--- a/src/reclaim/oidc_helper.c
+++ b/src/reclaim/oidc_helper.c
@@ -476,7 +476,7 @@ OIDC_build_authz_code (const struct GNUNET_CRYPTO_EcdsaPrivateKey *issuer,
476 payload_len = sizeof (struct OIDC_Parameters); 476 payload_len = sizeof (struct OIDC_Parameters);
477 if (NULL != nonce_str && strcmp ("", nonce_str) != 0) 477 if (NULL != nonce_str && strcmp ("", nonce_str) != 0)
478 { 478 {
479 if ((1 != SSCANF (nonce_str, "%u", &nonce)) || (nonce > UINT32_MAX)) 479 if ((1 != sscanf (nonce_str, "%u", &nonce)) || (nonce > UINT32_MAX))
480 { 480 {
481 GNUNET_break (0); 481 GNUNET_break (0);
482 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Invalid nonce %s\n", nonce_str); 482 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Invalid nonce %s\n", nonce_str);
@@ -754,4 +754,3 @@ OIDC_access_token_new ()
754 &access_token); 754 &access_token);
755 return access_token; 755 return access_token;
756} 756}
757