From 6e599264ad13e8fc105493d74d7c11d46f8739ed Mon Sep 17 00:00:00 2001 From: ng0 Date: Fri, 6 Sep 2019 22:46:29 +0000 Subject: first step to remove plibc --- src/reclaim/oidc_helper.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/reclaim') 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, payload_len = sizeof (struct OIDC_Parameters); if (NULL != nonce_str && strcmp ("", nonce_str) != 0) { - if ((1 != SSCANF (nonce_str, "%u", &nonce)) || (nonce > UINT32_MAX)) + if ((1 != sscanf (nonce_str, "%u", &nonce)) || (nonce > UINT32_MAX)) { GNUNET_break (0); GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Invalid nonce %s\n", nonce_str); @@ -754,4 +754,3 @@ OIDC_access_token_new () &access_token); return access_token; } - -- cgit v1.2.3