This does NOT address the remaining issues with relative settings and
FileETag mentioned in PR 42027, but at least it isolates the problem
to them. Currently these issues can be worked around with absolute
settings.
PR: 42027
Submitted by: Rici Lake <rici ricilake.net>
Reviewed by: rpluem
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@562860
13f79535-47bb-0310-9956-
ffa450edef68
conf->etag_add =
(conf->etag_add & (~ new->etag_remove)) | new->etag_add;
conf->etag_remove =
- (conf->opts_remove & (~ new->etag_add)) | new->etag_remove;
+ (conf->etag_remove & (~ new->etag_add)) | new->etag_remove;
conf->etag_bits =
(conf->etag_bits & (~ conf->etag_remove)) | conf->etag_add;
}