From: serassio <> Date: Mon, 28 Aug 2006 16:03:42 +0000 (+0000) Subject: Windows port: fix another missing USE_SELECT_WIN32 in squid.h X-Git-Tag: SQUID_3_0_PRE5~167 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9a37123d932264e8f513b8e3a739e6fc8f82d84c;p=thirdparty%2Fsquid.git Windows port: fix another missing USE_SELECT_WIN32 in squid.h --- diff --git a/src/squid.h b/src/squid.h index e855552034..222530a98d 100644 --- a/src/squid.h +++ b/src/squid.h @@ -1,6 +1,6 @@ /* - * $Id: squid.h,v 1.256 2006/08/20 09:50:05 serassio Exp $ + * $Id: squid.h,v 1.257 2006/08/28 10:03:42 serassio Exp $ * * AUTHOR: Duane Wessels * @@ -188,7 +188,7 @@ /* * Filedescriptor limits in the different select loops */ -#if defined(USE_SELECT) +#if defined(USE_SELECT) || defined(USE_SELECT_WIN32) /* Limited by design */ # define SQUID_MAXFD_LIMIT FD_SETSIZE #elif defined(USE_POLL)