mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 15:09:59 -04:00
*** empty log message ***
This commit is contained in:
parent
57ebb859ee
commit
bc9470d240
1 changed files with 3 additions and 3 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: lwresutil.c,v 1.18 2000/06/26 20:58:52 bwelling Exp $ */
|
||||
/* $Id: lwresutil.c,v 1.19 2000/06/26 21:27:14 bwelling Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -171,7 +171,7 @@ lwres_getaddrsbyname(lwres_context_t *ctx, const char *name,
|
|||
b_out.base = NULL;
|
||||
response = NULL;
|
||||
buffer = NULL;
|
||||
serial = ctx->serial++;
|
||||
serial = lwres_context_nextserial(ctx);
|
||||
|
||||
buffer = CTXMALLOC(LWRES_RECVLENGTH);
|
||||
if (buffer == NULL) {
|
||||
|
|
@ -326,7 +326,7 @@ lwres_getnamebyaddr(lwres_context_t *ctx, lwres_uint32_t addrtype,
|
|||
b_out.base = NULL;
|
||||
response = NULL;
|
||||
buffer = NULL;
|
||||
serial = ctx->serial++;
|
||||
serial = lwres_context_nextserial(ctx);
|
||||
|
||||
buffer = CTXMALLOC(LWRES_RECVLENGTH);
|
||||
if (buffer == NULL) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue