1
0
mirror of https://github.com/golang/go synced 2024-10-03 16:31:27 -06:00

net: fix build (FreeBSD sendfile)

TBR=bradfitz
CC=golang-dev
https://golang.org/cl/6358043
This commit is contained in:
Russ Cox 2012-06-27 17:02:39 -04:00
parent 9525372e31
commit f009fefd79

View File

@ -72,7 +72,8 @@ func sendFile(c *netFD, r io.Reader) (written int64, err error, handled bool) {
if int64(n) > remain {
n = int(remain)
}
n, err1 := syscall.Sendfile(dst, src, pos, n)
pos1 := pos
n, err1 := syscall.Sendfile(dst, src, &pos1, n)
if n > 0 {
pos += int64(n)
written += int64(n)