aboutsummaryrefslogtreecommitdiff
path: root/src/rest-plugins
diff options
context:
space:
mode:
authorSchanzenbach, Martin <mschanzenbach@posteo.de>2018-11-26 19:34:07 +0100
committerSchanzenbach, Martin <mschanzenbach@posteo.de>2018-11-26 19:34:07 +0100
commit8e9283304a3cdcdaec6be207e60b172642af5a17 (patch)
treef85bedf3948921a74c27e2ef9bd4de61a87648e5 /src/rest-plugins
parent1413d53c17872444afe93c767728a2d22c63143e (diff)
downloadgnunet-8e9283304a3cdcdaec6be207e60b172642af5a17.tar.gz
gnunet-8e9283304a3cdcdaec6be207e60b172642af5a17.zip
REST: Fix oidc client lookup
Diffstat (limited to 'src/rest-plugins')
-rw-r--r--src/rest-plugins/plugin_rest_openid_connect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rest-plugins/plugin_rest_openid_connect.c b/src/rest-plugins/plugin_rest_openid_connect.c
index 2e68b7f99..3a0106c10 100644
--- a/src/rest-plugins/plugin_rest_openid_connect.c
+++ b/src/rest-plugins/plugin_rest_openid_connect.c
@@ -1492,7 +1492,7 @@ check_authorization (struct RequestHandle *handle,
1492 } 1492 }
1493 1493
1494 //check client_id 1494 //check client_id
1495 for (handle->ego_entry = handle->ego_head; NULL != handle->ego_entry->next; ) 1495 for (handle->ego_entry = handle->ego_head; NULL != handle->ego_entry; )
1496 { 1496 {
1497 if ( 0 == strcmp(handle->ego_entry->keystring, client_id)) 1497 if ( 0 == strcmp(handle->ego_entry->keystring, client_id))
1498 { 1498 {