mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
2871. [bug] Type mismatch in mem_api.c between the definition and
the header file, causing build failure with --enable-exportlib. [RT #21138] 9.8.0 and 9.7.1.
This commit is contained in:
parent
a821347c7f
commit
ce164dbd9c
2 changed files with 6 additions and 2 deletions
4
CHANGES
4
CHANGES
|
|
@ -1,3 +1,7 @@
|
|||
2871. [bug] Type mismatch in mem_api.c between the definition and
|
||||
the header file, causing build failure with
|
||||
--enable-exportlib. [RT #21138]
|
||||
|
||||
2870. [maint] Add AAAA address for L.ROOT-SERVERS.NET.
|
||||
|
||||
2869. [bug] Fix arguments to dns_keytable_findnextkeynode() call.
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: mem_api.c,v 1.5 2009/09/02 23:48:02 tbox Exp $ */
|
||||
/* $Id: mem_api.c,v 1.6 2010/04/09 06:09:35 jinmei Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
#if ISC_MEM_TRACKLINES
|
||||
#define FLARG_PASS , file, line
|
||||
#define FLARG , const char *file, int line
|
||||
#define FLARG , const char *file, unsigned int line
|
||||
#else
|
||||
#define FLARG_PASS
|
||||
#define FLARG
|
||||
|
|
|
|||
Loading…
Reference in a new issue