Skip to content

Commit

Permalink
code: declare introspection_endpoint_method member as
Browse files Browse the repository at this point in the history
int so it can be set to OIDC_CONFIG_POS_INT_UNSET without warning

Signed-off-by: Hans Zandbelt <[email protected]>
  • Loading branch information
zandbelt committed Dec 16, 2024
1 parent 295933b commit ef27683
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- http: report errors when curl_easy_setopt fails and improve macro usage
- code: declare enum members as int so they can be set to OIDC_CONFIG_POS_INT_UNSET without warning
- code: declare memcache members as int so they can be set to OIDC_CONFIG_POS_INT_UNSET without warning
- code: declare introspection_endpoint_method member as int so it can be set to OIDC_CONFIG_POS_INT_UNSET without warning

12/15/2024
- add Coverity Github action
Expand Down
2 changes: 1 addition & 1 deletion src/cfg/oauth.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ struct oidc_oauth_t {
char *client_secret;

char *introspection_endpoint_url;
oidc_oauth_introspection_endpoint_method_t introspection_endpoint_method;
int introspection_endpoint_method;
char *introspection_token_param_name;
char *introspection_endpoint_params;
char *introspection_endpoint_auth;
Expand Down

0 comments on commit ef27683

Please sign in to comment.