2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-09-02 07:15:44 +00:00

Add support for printing NXDOMAIN and YXDOMAIN prerequisites.

This commit is contained in:
Ted Lemon
2001-01-06 21:32:26 +00:00
parent d8c76890f8
commit 27b3dc1d62

View File

@@ -43,7 +43,7 @@
#ifndef lint #ifndef lint
static char copyright[] = static char copyright[] =
"$Id: print.c,v 1.46 2000/11/28 23:18:40 mellon Exp $ Copyright (c) 1995, 1996, 1998, 1999 The Internet Software Consortium. All rights reserved.\n"; "$Id: print.c,v 1.47 2001/01/06 21:32:26 mellon Exp $ Copyright (c) 1995, 1996, 1998, 1999 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */ #endif /* not lint */
#include "dhcpd.h" #include "dhcpd.h"
@@ -1028,11 +1028,19 @@ void print_dns_status (int status, ns_updque *uq)
switch (u -> r_opcode) switch (u -> r_opcode)
{ {
case NXRRSET: case NXRRSET:
op = "doesn't exist"; op = "rrset doesn't exist";
position = 1; position = 1;
break; break;
case YXRRSET: case YXRRSET:
op = "exists"; op = "rrset exists";
position = 1;
break;
case NXDOMAIN:
op = "domain doesn't exist";
position = 1;
break;
case YXDOMAIN:
op = "domain exists";
position = 1; position = 1;
break; break;
case ADD: case ADD: