Skip to content

Commit

Permalink
Fix compatibility with nginx 1.19.3+ (#1)
Browse files Browse the repository at this point in the history
* Fix compatibility with nginx 1.19.3+

* Changelog
  • Loading branch information
jbienkowski311 committed May 24, 2021
1 parent c734505 commit c8ca321
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGES
@@ -1,3 +1,9 @@
2021-05-24 VERSION 2.5
* Fix compatibility with nginx-1.19.3+.

2017-02-02 VERSION 2.4
* Fix compatibility with nginx-1.11.6+.

2014-12-23 VERSION 2.3
* Fix compatibility with nginx-1.7.9+.

Expand Down
3 changes: 3 additions & 0 deletions ngx_cache_purge_module.c
Expand Up @@ -487,6 +487,9 @@ typedef struct {
ngx_array_t *cookie_domains;
ngx_array_t *cookie_paths;
# endif /* nginx_version >= 1001015 */
# if (nginx_version >= 1019003)
ngx_array_t *cookie_flags;
# endif /* nginx_version >= 1019003 */

# if (nginx_version < 1007008)
ngx_str_t body_source;
Expand Down

0 comments on commit c8ca321

Please sign in to comment.