Skip to content

Commit f7beb71

Browse files
committed
fix accepting custom cookie names in OIDCOAuthAcceptTokenAs
i.e. allow for cookie:<name>; see #1261; thanks @bbartke bump to 2.4.16.4rc0 Signed-off-by: Hans Zandbelt <hans.zandbelt@openidc.com>
1 parent e2fc2cf commit f7beb71

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
09/09/2024
2+
- fix accepting custom cookie names in OIDCOAuthAcceptTokenAs cookie:<name>; see #1261; thanks @bbartke
3+
- bump to 2.4.16.4rc0
4+
15
09/06/2024
26
- allow overriding globally set OIDCCacheType back to shm in vhosts
37
- correct typo in child initialization routines when using multiple vhosts; closes #1208; thanks @studersi

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([mod_auth_openidc],[2.4.16.3],[hans.zandbelt@openidc.com])
1+
AC_INIT([mod_auth_openidc],[2.4.16.4rc0],[hans.zandbelt@openidc.com])
22

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

src/cfg/dir.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ const char *oidc_cmd_dir_accept_oauth_token_in_set(cmd_parms *cmd, void *m, cons
225225
}
226226

227227
rv = oidc_cfg_parse_option(cmd->pool, oidc_oauth_accept_token_in_options,
228-
OIDC_CFG_OPTIONS_SIZE(oidc_oauth_accept_token_in_options), arg, &v);
228+
OIDC_CFG_OPTIONS_SIZE(oidc_oauth_accept_token_in_options), s, &v);
229229
if (rv != NULL)
230230
return OIDC_CONFIG_DIR_RV(cmd, rv);
231231

0 commit comments

Comments
 (0)