From 1b6581bfd03c2fedc2dbeaedfd09cbe095fa2e38 Mon Sep 17 00:00:00 2001 From: Francesco Chemolli Date: Mon, 30 Jan 2012 17:20:11 +0100 Subject: [PATCH] Windows portability fix: refer to network wrappers in squidclient. --- tools/squidclient.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/squidclient.cc b/tools/squidclient.cc index 05b5cd93dc..5de3a13bbf 100644 --- a/tools/squidclient.cc +++ b/tools/squidclient.cc @@ -827,7 +827,7 @@ static ssize_t mywrite(int fd, void *buf, size_t len) { #if _SQUID_WINDOWS_ - return send(fd, buf, len, 0); + return Squid::send(fd, buf, len, 0); #else alarm(io_timeout); return write(fd, buf, len); -- 2.47.2