https://bz.apache.org/bugzilla/show_bug.cgi?id=58231
--- Comment #6 from Luca Toscano <[email protected]> --- >From mod_rewrite.c in httpd-trunk I can see the following: /* * lookup a HTTP header and set VARY note */ static const char *lookup_header(const char *name, rewrite_ctx *ctx) { const char *val = apr_table_get(ctx->r->headers_in, name); if (val) { ctx->vary_this = ctx->vary_this ? apr_pstrcat(ctx->r->pool, ctx->vary_this, ", ", name, NULL) : apr_pstrdup(ctx->r->pool, name); } return val; } So it seems to be done on purpose but I didn't find anything useful in the svn commit log. Will spend a bit of time during the next days and report if I find anything useful. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
