aboutsummaryrefslogtreecommitdiff
path: root/src/reclaim
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-09-06 22:46:29 +0000
committerng0 <ng0@n0.is>2019-09-06 22:46:29 +0000
commit6e599264ad13e8fc105493d74d7c11d46f8739ed (patch)
tree169bef1ecbade5a659831fb169f3ae6943af127f /src/reclaim
parent4f13bc15113021ebf71d5d81e99bc29f8a07fc9c (diff)
downloadgnunet-6e599264ad13e8fc105493d74d7c11d46f8739ed.tar.gz
gnunet-6e599264ad13e8fc105493d74d7c11d46f8739ed.zip
first step to remove plibc
Diffstat (limited to 'src/reclaim')
-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