diff options
author | Martin Schanzenbach <mschanzenbach@posteo.de> | 2021-04-20 23:57:50 +0200 |
---|---|---|
committer | Martin Schanzenbach <mschanzenbach@posteo.de> | 2021-04-20 23:57:50 +0200 |
commit | 985dcf84150151c8ad62549815da3a16e70ca4cd (patch) | |
tree | 4b48f083f39cdc936a4a514f05378e34bc729d05 | |
parent | 78569d4099066fade00306232b507be47778ce92 (diff) |
- fix
-rw-r--r-- | src/reclaim/plugin_reclaim_credential_pabc.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/reclaim/plugin_reclaim_credential_pabc.c b/src/reclaim/plugin_reclaim_credential_pabc.c index 8f9a0509d..4b19a3544 100644 --- a/src/reclaim/plugin_reclaim_credential_pabc.c +++ b/src/reclaim/plugin_reclaim_credential_pabc.c @@ -156,6 +156,12 @@ inspect_attrs (char const *const key, GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Found attribue in PABC credential: `%s': `%s'\n", key, value); + if (0 == strcmp (key, "expiration")) + return; + if (0 == strcmp (key, "issuer")) + return; + if (0 == strcmp (key, "subject")) + return; GNUNET_RECLAIM_attribute_list_add (attrs, key, NULL, |