Commit 53e39ac6 authored by Dag Erling Smørgrav's avatar Dag Erling Smørgrav

Correct three bits worth of line noise. This fixes #129.


git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@1838 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 34fc1343
......@@ -326,7 +326,7 @@ http_GetTail(struct http *hp, unsigned len, char **b, char **e)
return (0);
if (len == 0)
len = hp->pl_e - hp->pl_e;
len = hp->pl_e - hp->pl_s;
if (hp->pl_s + len > hp->pl_e)
len = hp->pl_e - hp->pl_s;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment