mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 14:00:00 -04:00
update copyright notice / whitespace
This commit is contained in:
parent
2595d1da35
commit
2a2618356e
6 changed files with 11 additions and 10 deletions
2
CHANGES
2
CHANGES
|
|
@ -1,4 +1,4 @@
|
|||
4545. [func] Expand YAML output from dnstap-read to include
|
||||
4545. [func] Expand YAML output from dnstap-read to include
|
||||
a detailed breakdown of the DNS message contents.
|
||||
[RT #43642]
|
||||
|
||||
|
|
|
|||
|
|
@ -2147,7 +2147,7 @@ catz_addmodzone_taskaction(isc_task_t *task, isc_event_t *event0) {
|
|||
RUNTIME_CHECK(result == ISC_R_SUCCESS);
|
||||
dns_view_thaw(ev->view);
|
||||
result = configure_zone(cfg->config, zoneobj, cfg->vconfig,
|
||||
ev->cbd->server->mctx, ev->view,
|
||||
ev->cbd->server->mctx, ev->view,
|
||||
&ev->cbd->server->viewlist, cfg->actx,
|
||||
ISC_TRUE, ISC_FALSE, ev->mod);
|
||||
dns_view_freeze(ev->view);
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
; Copyright (C) 2000, 2001, 2004, 2007, 2016 Internet Systems Consortium, Inc. ("ISC")
|
||||
; Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
|
||||
;
|
||||
; This Source Code Form is subject to the terms of the Mozilla Public
|
||||
; License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
; Copyright (C) 2016 Internet Systems Consortium, Inc. ("ISC")
|
||||
;
|
||||
;
|
||||
; This Source Code Form is subject to the terms of the Mozilla Public
|
||||
; License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
; file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
@ 0 SOA . . 0 0 0 0 0
|
||||
@ 0 NS .
|
||||
|
|
|
|||
|
|
@ -192,10 +192,10 @@ print_yaml(dns_dtdata_t *dt) {
|
|||
printf(" response_time: !!timestamp %s\n", buf);
|
||||
}
|
||||
|
||||
if (dt->msgdata.base != NULL) {
|
||||
printf(" message_size: %zdb\n", (size_t) dt->msgdata.length);
|
||||
} else
|
||||
printf(" message_size: 0b\n");
|
||||
if (dt->msgdata.base != NULL) {
|
||||
printf(" message_size: %zdb\n", (size_t) dt->msgdata.length);
|
||||
} else
|
||||
printf(" message_size: 0b\n");
|
||||
|
||||
if (m->has_socket_family) {
|
||||
const ProtobufCEnumValue *type =
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ hexdump(const char *msg, const char *msg2, void *base, size_t len) {
|
|||
isc_buffer_availablelength(b)) { \
|
||||
result = ISC_R_NOSPACE; \
|
||||
goto cleanup; \
|
||||
} else \
|
||||
} else \
|
||||
isc_buffer_putstr(b, s);}
|
||||
#define VALID_PSEUDOSECTION(s) (((s) >= DNS_PSEUDOSECTION_ANY) \
|
||||
&& ((s) < DNS_PSEUDOSECTION_MAX))
|
||||
|
|
@ -1632,7 +1632,7 @@ getsection(isc_buffer_t *source, dns_message_t *msg, dns_decompress_t *dctx,
|
|||
((msg->flags & DNS_MESSAGEFLAG_QR) != 0) &&
|
||||
((msg->flags & DNS_MESSAGEFLAG_TC) == 0) &&
|
||||
!preserve_order &&
|
||||
!auth_signed(section))
|
||||
!auth_signed(section))
|
||||
DO_ERROR(DNS_R_FORMERR);
|
||||
|
||||
if (seen_problem)
|
||||
|
|
|
|||
Loading…
Reference in a new issue