aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/reclaim/jwt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/reclaim/jwt.c b/src/reclaim/jwt.c
index 041498fb2..94db19b14 100644
--- a/src/reclaim/jwt.c
+++ b/src/reclaim/jwt.c
@@ -121,9 +121,9 @@ jwt_create_from_list (const struct GNUNET_CRYPTO_EcdsaPublicKey *aud_key,
121 //auth_time only if max_age 121 //auth_time only if max_age
122 //nonce only if nonce 122 //nonce only if nonce
123 // OPTIONAL acr,amr,azp 123 // OPTIONAL acr,amr,azp
124 subject = GNUNET_STRINGS_data_to_string_alloc (&sub_key, 124 subject = GNUNET_STRINGS_data_to_string_alloc (sub_key,
125 sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey)); 125 sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey));
126 audience = GNUNET_STRINGS_data_to_string_alloc (&aud_key, 126 audience = GNUNET_STRINGS_data_to_string_alloc (aud_key,
127 sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey)); 127 sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey));
128 header = create_jwt_header (); 128 header = create_jwt_header ();
129 body = json_object (); 129 body = json_object ();