mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 08:20:01 -04:00
treat FD_SIZE as int (which can be defined as unsigned on some platforms)
to silence compiler
This commit is contained in:
parent
ee537376ad
commit
d364948549
1 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: context.c,v 1.53 2009/09/01 05:50:17 each Exp $ */
|
||||
/* $Id: context.c,v 1.54 2009/09/01 22:52:27 jinmei Exp $ */
|
||||
|
||||
/*! \file context.c
|
||||
lwres_context_create() creates a #lwres_context_t structure for use in
|
||||
|
|
@ -476,7 +476,7 @@ lwres_context_sendrecv(lwres_context_t *ctx,
|
|||
* If this is not checked, select() can overflow,
|
||||
* causing corruption elsewhere.
|
||||
*/
|
||||
if (ctx->sock >= FD_SETSIZE) {
|
||||
if (ctx->sock >= (int)FD_SETSIZE) {
|
||||
close(ctx->sock);
|
||||
ctx->sock = -1;
|
||||
return (LWRES_R_IOERROR);
|
||||
|
|
|
|||
Loading…
Reference in a new issue