From: phk Date: Fri, 6 Jun 2008 21:50:17 +0000 (+0000) Subject: Spell "X-Forwarded-for" as "X-Forwarded-For", this seems to match the X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0342e55f48a61c8bef596393f86710526b30d019;p=varnish Spell "X-Forwarded-for" as "X-Forwarded-For", this seems to match the unwritten lore better. Closes 203 git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2652 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- diff --git a/varnish-cache/bin/varnishd/cache_http.c b/varnish-cache/bin/varnishd/cache_http.c index d6986f99..3233fbba 100644 --- a/varnish-cache/bin/varnishd/cache_http.c +++ b/varnish-cache/bin/varnishd/cache_http.c @@ -655,7 +655,7 @@ http_FilterHeader(struct sess *sp, unsigned how) http_FilterFields(sp->wrk, sp->fd, hp, sp->http, how); http_PrintfHeader(sp->wrk, sp->fd, hp, "X-Varnish: %u", sp->xid); http_PrintfHeader(sp->wrk, sp->fd, hp, - "X-Forwarded-for: %s", sp->addr); + "X-Forwarded-For: %s", sp->addr); sp->bereq = bereq;