aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-12-14 14:37:33 +0100
committerChristian Grothoff <christian@grothoff.org>2020-12-14 14:37:33 +0100
commit74d7528e6bd53cf5acc939c63a5be74a001e5ce1 (patch)
tree5904faddd3dc867cb4111278d0b9ad5298857588 /src
parent561596641606ecc0b5f71658c34eab1312ad8f18 (diff)
downloadgnunet-74d7528e6bd53cf5acc939c63a5be74a001e5ce1.tar.gz
gnunet-74d7528e6bd53cf5acc939c63a5be74a001e5ce1.zip
indentation fixes
Diffstat (limited to 'src')
-rw-r--r--src/include/gnunet_scheduler_lib.h12
-rw-r--r--src/reclaim/oidc_helper.c2
2 files changed, 6 insertions, 8 deletions
diff --git a/src/include/gnunet_scheduler_lib.h b/src/include/gnunet_scheduler_lib.h
index b828e2db7..158f1d83b 100644
--- a/src/include/gnunet_scheduler_lib.h
+++ b/src/include/gnunet_scheduler_lib.h
@@ -497,13 +497,11 @@ GNUNET_SCHEDULER_cancel (struct GNUNET_SCHEDULER_Task *task);
497 * @param priority priority to use for the task 497 * @param priority priority to use for the task
498 */ 498 */
499void 499void
500GNUNET_SCHEDULER_add_with_reason_and_priority (GNUNET_SCHEDULER_TaskCallback 500GNUNET_SCHEDULER_add_with_reason_and_priority (
501 task, 501 GNUNET_SCHEDULER_TaskCallback task,
502 void *task_cls, 502 void *task_cls,
503 enum GNUNET_SCHEDULER_Reason 503 enum GNUNET_SCHEDULER_Reason reason,
504 reason, 504 enum GNUNET_SCHEDULER_Priority priority);
505 enum GNUNET_SCHEDULER_Priority
506 priority);
507 505
508 506
509/** 507/**
diff --git a/src/reclaim/oidc_helper.c b/src/reclaim/oidc_helper.c
index 1dde7b673..33db26a7c 100644
--- a/src/reclaim/oidc_helper.c
+++ b/src/reclaim/oidc_helper.c
@@ -677,7 +677,7 @@ OIDC_parse_authz_code (const struct GNUNET_IDENTITY_PublicKey *audience,
677 // cmp code_challenge code_verifier 677 // cmp code_challenge code_verifier
678 code_challenge_len = ntohl (params->code_challenge_len); 678 code_challenge_len = ntohl (params->code_challenge_len);
679 code_challenge = ((char *) &params[1]); 679 code_challenge = ((char *) &params[1]);
680 if (!(opts & OIDC_VERIFICATION_NO_CODE_VERIFIER)) 680 if (! (opts & OIDC_VERIFICATION_NO_CODE_VERIFIER))
681 { 681 {
682 if (GNUNET_OK != check_code_challenge (code_challenge, 682 if (GNUNET_OK != check_code_challenge (code_challenge,
683 code_challenge_len, 683 code_challenge_len,