Skip to content

Commit

Permalink
fix typos in redis pwd
Browse files Browse the repository at this point in the history
Signed-off-by: Hans Zandbelt <[email protected]>
  • Loading branch information
zandbelt committed Apr 1, 2024
1 parent f32d12e commit f46c77b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/cfg/cache.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ OIDC_CFG_MEMBER_FUNCS_DECL(cache_memcache_ttl, int)

OIDC_CFG_MEMBER_FUNCS_DECL(cache_redis_server, const char *)
OIDC_CFG_MEMBER_FUNCS_DECL(cache_redis_username, const char *)
OIDC_CFG_MEMBER_FUNCS_DECL(cache_redis_password, const char *)
OIDC_CFG_MEMBER_FUNCS_DECL(cache_redis_database, int)
OIDC_CFG_MEMBER_FUNCS_DECL(cache_redis_timeout, int)
OIDC_CFG_MEMBER_FUNCS_DECL(cache_redis_connect_timeout, int, const char *)
Expand Down
4 changes: 2 additions & 2 deletions src/cfg/cmds.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const command_rec oidc_cfg_cmds[] = {
AP_INIT_TAKE12,
OIDCStateMaxNumberOfCookies,
max_number_of_state_cookies,
"Maximun number of parallel state cookies i.e. outstanding authorization requests and whether to delete the oldest cookie(s)."),
"Maximum number of parallel state cookies i.e. outstanding authorization requests and whether to delete the oldest cookie(s)."),
OIDC_CFG_CMD(
AP_INIT_TAKE1,
OIDCSessionInactivityTimeout,
Expand Down Expand Up @@ -339,7 +339,7 @@ const command_rec oidc_cfg_cmds[] = {
OIDC_CFG_CMD(
AP_INIT_TAKE1,
OIDCRedisCachePassword,
cache_redis_username,
cache_redis_password,
"Password for authentication to the Redis server."),
OIDC_CFG_CMD(
AP_INIT_TAKE1,
Expand Down

0 comments on commit f46c77b

Please sign in to comment.