mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-15 22:09:31 -04:00
pullup:
1288. [port] Openserver: the value FD_SETSIZE depends on whether
<sys/param.h> is included or not. Be consistant.
This commit is contained in:
parent
ec5f67b8cf
commit
a6540ffa21
4 changed files with 13 additions and 3 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
1288. [port] Openserver: the value FD_SETSIZE depends on whether
|
||||
<sys/param.h> is included or not. Be consistant.
|
||||
|
||||
1284. [bug] Memory leak if dns_db_beginload() failed.
|
||||
|
||||
1283. [bug] Reference after free error if dns_dispatchmgr_create()
|
||||
|
|
|
|||
|
|
@ -15,10 +15,11 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: zone_test.c,v 1.26 2001/01/22 22:29:36 gson Exp $ */
|
||||
/* $Id: zone_test.c,v 1.26.2.1 2002/05/10 06:54:37 marka Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/time.h>
|
||||
|
||||
|
|
@ -41,6 +42,10 @@
|
|||
#include <dns/result.h>
|
||||
#include <dns/zone.h>
|
||||
|
||||
#ifdef ISC_PLATFORM_NEEDSYSSELECTH
|
||||
#include <sys/select.h>
|
||||
#endif
|
||||
|
||||
static int debug = 0;
|
||||
static int quiet = 0;
|
||||
static int stats = 0;
|
||||
|
|
|
|||
|
|
@ -15,10 +15,11 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: app.c,v 1.43.2.1 2001/10/22 23:28:17 gson Exp $ */
|
||||
/* $Id: app.c,v 1.43.2.2 2002/05/10 06:54:38 marka Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
#include <sys/param.h> /* Openserver 5.0.6A and FD_SETSIZE */
|
||||
#include <sys/types.h>
|
||||
|
||||
#include <stddef.h>
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: entropy.c,v 1.60.2.1 2001/10/22 23:28:18 gson Exp $ */
|
||||
/* $Id: entropy.c,v 1.60.2.2 2002/05/10 06:54:40 marka Exp $ */
|
||||
|
||||
/*
|
||||
* This is the system depenedent part of the ISC entropy API.
|
||||
|
|
@ -23,6 +23,7 @@
|
|||
|
||||
#include <config.h>
|
||||
|
||||
#include <sys/param.h> /* Openserver 5.0.6A and FD_SETSIZE */
|
||||
#include <sys/types.h>
|
||||
#include <sys/time.h>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue