aboutsummaryrefslogtreecommitdiff
path: root/src/reclaim
diff options
context:
space:
mode:
authorSchanzenbach, Martin <martin.schanzenbach@aisec.fraunhofer.de>2018-07-21 13:04:17 +0200
committerSchanzenbach, Martin <martin.schanzenbach@aisec.fraunhofer.de>2018-07-21 13:04:17 +0200
commit735e699708247813ae3e9926190dff35a9c8eba1 (patch)
tree5f9d151d43a32bba11560639f83fe6ba20e920ae /src/reclaim
parent7726b15977bacfc05a7f9321d3b595b04762d30a (diff)
downloadgnunet-735e699708247813ae3e9926190dff35a9c8eba1.tar.gz
gnunet-735e699708247813ae3e9926190dff35a9c8eba1.zip
actually fix
Diffstat (limited to 'src/reclaim')
-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 ();