sim-card
/
qemu
Archived
10
0
Fork 0

sheepdog: fix compile error on systems without TCP_CORK

WIN32 is not only the system which doesn't have TCP_CORK (e.g. OS X).

Signed-off-by: MORITA Kazutaka <morita.kazutaka@lab.ntt.co.jp>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
MORITA Kazutaka 2010-07-07 15:25:30 +09:00 committed by Blue Swirl
parent 5efb397f87
commit 6defcc3784
1 changed files with 1 additions and 1 deletions

View File

@ -889,7 +889,7 @@ static int aio_flush_request(void *opaque)
return !QLIST_EMPTY(&s->outstanding_aio_head);
}
#ifdef _WIN32
#if !defined(SOL_TCP) || !defined(TCP_CORK)
static int set_cork(int fd, int v)
{