Skip to content

Commit

Permalink
fix accepting custom cookie names in OIDCOAuthAcceptTokenAs
Browse files Browse the repository at this point in the history
i.e. allow for cookie:<name>; see #1261; thanks @bbartke

bump to 2.4.16.4rc0

Signed-off-by: Hans Zandbelt <[email protected]>
  • Loading branch information
zandbelt committed Sep 9, 2024
1 parent e2fc2cf commit f7beb71
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
09/09/2024
- fix accepting custom cookie names in OIDCOAuthAcceptTokenAs cookie:<name>; see #1261; thanks @bbartke
- bump to 2.4.16.4rc0

09/06/2024
- allow overriding globally set OIDCCacheType back to shm in vhosts
- correct typo in child initialization routines when using multiple vhosts; closes #1208; thanks @studersi
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([mod_auth_openidc],[2.4.16.3],[[email protected]])
AC_INIT([mod_auth_openidc],[2.4.16.4rc0],[[email protected]])

AC_SUBST(NAMEVER, AC_PACKAGE_TARNAME()-AC_PACKAGE_VERSION())

Expand Down
2 changes: 1 addition & 1 deletion src/cfg/dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ const char *oidc_cmd_dir_accept_oauth_token_in_set(cmd_parms *cmd, void *m, cons
}

rv = oidc_cfg_parse_option(cmd->pool, oidc_oauth_accept_token_in_options,
OIDC_CFG_OPTIONS_SIZE(oidc_oauth_accept_token_in_options), arg, &v);
OIDC_CFG_OPTIONS_SIZE(oidc_oauth_accept_token_in_options), s, &v);
if (rv != NULL)
return OIDC_CONFIG_DIR_RV(cmd, rv);

Expand Down

0 comments on commit f7beb71

Please sign in to comment.