Commit e8de1a08 authored by Dag Erling Smørgrav's avatar Dag Erling Smørgrav

Merged revisions 1831-1838 via svnmerge from

svn+ssh://projects.linpro.no/svn/varnish/trunk/varnish-cache

........
  r1831 | ssm | 2007-08-10 16:05:32 +0200 (Fri, 10 Aug 2007) | 1 line
  
  Added missing dependency on "libc6-dev | libc-dev" for vcl compilation
........
  r1837 | des | 2007-08-13 19:58:09 +0200 (Mon, 13 Aug 2007) | 2 lines
  
  Readability nit
........
  r1838 | des | 2007-08-13 20:00:50 +0200 (Mon, 13 Aug 2007) | 2 lines
  
  Correct three bits worth of line noise.  This fixes #129.
........


git-svn-id: http://www.varnish-cache.org/svn/branches/1.1@1844 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 11f95013
......@@ -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;
......
......@@ -135,8 +135,9 @@ WRK_Write(struct worker *w, const void *ptr, int len)
if (w->niov == MAX_IOVS)
WRK_Flush(w);
w->iov[w->niov].iov_base = (void*)(uintptr_t)ptr;
w->iov[w->niov++].iov_len = len;
w->iov[w->niov].iov_len = len;
w->liov += len;
w->niov++;
return (len);
}
......
......@@ -8,7 +8,7 @@ Standards-Version: 3.7.2
Package: varnish
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, gcc ( >= 3.3), libvarnish
Depends: ${shlibs:Depends}, ${misc:Depends}, gcc ( >= 3.3), libvarnish, libc6-dev | libc-dev
Description: A state-of-the-art, high-performance HTTP accelerator
varnish is the server-side alternative to Squid, written primarily with
speed in mind, and with a look to implementing full ESI-support in
......
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