Skip to content

Commit e9836ef

Browse files
author
Hans Zandbelt
committed
correct cookie_path comparison
1 parent dab95ad commit e9836ef

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
@@ -1,4 +1,5 @@
11
8/26/2014
2+
- correct cookie_path comparison
23
- release 1.5.5
34

45
8/20/2014

src/config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,7 @@ void *oidc_merge_dir_config(apr_pool_t *pool, void *BASE, void *ADD) {
841841
apr_strnatcasecmp(add->cookie, OIDC_DEFAULT_COOKIE) != 0 ?
842842
add->cookie : base->cookie);
843843
c->cookie_path = (
844-
add->cookie_path != OIDC_DEFAULT_COOKIE_PATH ?
844+
apr_strnatcasecmp(add->cookie_path, OIDC_DEFAULT_COOKIE_PATH) != 0 ?
845845
add->cookie_path : base->cookie_path);
846846
c->authn_header = (
847847
add->authn_header != OIDC_DEFAULT_AUTHN_HEADER ?

0 commit comments

Comments
 (0)