Skip to content

Commit

Permalink
correct cookie_path comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
Hans Zandbelt committed Aug 26, 2014
1 parent dab95ad commit e9836ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
8/26/2014
- correct cookie_path comparison
- release 1.5.5

8/20/2014
Expand Down
2 changes: 1 addition & 1 deletion src/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ void *oidc_merge_dir_config(apr_pool_t *pool, void *BASE, void *ADD) {
apr_strnatcasecmp(add->cookie, OIDC_DEFAULT_COOKIE) != 0 ?
add->cookie : base->cookie);
c->cookie_path = (
add->cookie_path != OIDC_DEFAULT_COOKIE_PATH ?
apr_strnatcasecmp(add->cookie_path, OIDC_DEFAULT_COOKIE_PATH) != 0 ?
add->cookie_path : base->cookie_path);
c->authn_header = (
add->authn_header != OIDC_DEFAULT_AUTHN_HEADER ?
Expand Down

0 comments on commit e9836ef

Please sign in to comment.