Skip to content

Commit ef27683

Browse files
committed
code: declare introspection_endpoint_method member as
int so it can be set to OIDC_CONFIG_POS_INT_UNSET without warning Signed-off-by: Hans Zandbelt <[email protected]>
1 parent 295933b commit ef27683

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
- http: report errors when curl_easy_setopt fails and improve macro usage
33
- code: declare enum members as int so they can be set to OIDC_CONFIG_POS_INT_UNSET without warning
44
- code: declare memcache members as int so they can be set to OIDC_CONFIG_POS_INT_UNSET without warning
5+
- code: declare introspection_endpoint_method member as int so it can be set to OIDC_CONFIG_POS_INT_UNSET without warning
56

67
12/15/2024
78
- add Coverity Github action

src/cfg/oauth.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ struct oidc_oauth_t {
5959
char *client_secret;
6060

6161
char *introspection_endpoint_url;
62-
oidc_oauth_introspection_endpoint_method_t introspection_endpoint_method;
62+
int introspection_endpoint_method;
6363
char *introspection_token_param_name;
6464
char *introspection_endpoint_params;
6565
char *introspection_endpoint_auth;

0 commit comments

Comments
 (0)