Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
c2b2bd69
Commit
c2b2bd69
authored
Feb 02, 2006
by
Mark Andrews
Browse files
1977. [bug] Silence noisy log message. [RT #15704]
parent
d140ae28
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
c2b2bd69
1977. [bug] Silence noisy log message. [RT #15704]
1976. [bug] Handle systems with no IPv4 addresses. [RT #15695]
1976. [bug] Handle systems with no IPv4 addresses. [RT #15695]
1975. [bug] libbind: isc_gethexstring() could misparse multi-line
1975. [bug] libbind: isc_gethexstring() could misparse multi-line
...
...
bin/named/query.c
View file @
c2b2bd69
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
* PERFORMANCE OF THIS SOFTWARE.
*/
*/
/* $Id: query.c,v 1.2
79
2006/0
1
/0
5 02:19:01
marka Exp $ */
/* $Id: query.c,v 1.2
80
2006/0
2
/0
2 22:48:58
marka Exp $ */
/*! \file */
/*! \file */
...
@@ -3444,7 +3444,7 @@ query_find(ns_client_t *client, dns_fetchevent_t *event, dns_rdatatype_t qtype)
...
@@ -3444,7 +3444,7 @@ query_find(ns_client_t *client, dns_fetchevent_t *event, dns_rdatatype_t qtype)
/*
/*
* First we must find the right database.
* First we must find the right database.
*/
*/
options
=
0
;
options
&
=
DNS_GETDB_NOLOG
;
/* Preserve DNS_GETDB_NOLOG. */
if
(
dns_rdatatype_atparent
(
qtype
)
&&
if
(
dns_rdatatype_atparent
(
qtype
)
&&
!
dns_name_equal
(
client
->
query
.
qname
,
dns_rootname
))
!
dns_name_equal
(
client
->
query
.
qname
,
dns_rootname
))
options
|=
DNS_GETDB_NOEXACT
;
options
|=
DNS_GETDB_NOEXACT
;
...
@@ -3999,6 +3999,8 @@ query_find(ns_client_t *client, dns_fetchevent_t *event, dns_rdatatype_t qtype)
...
@@ -3999,6 +3999,8 @@ query_find(ns_client_t *client, dns_fetchevent_t *event, dns_rdatatype_t qtype)
query_maybeputqname
(
client
);
query_maybeputqname
(
client
);
client
->
query
.
qname
=
tname
;
client
->
query
.
qname
=
tname
;
want_restart
=
ISC_TRUE
;
want_restart
=
ISC_TRUE
;
if
(
!
WANTRECURSION
(
client
))
options
|=
DNS_GETDB_NOLOG
;
goto
addauth
;
goto
addauth
;
case
DNS_R_DNAME
:
case
DNS_R_DNAME
:
/*
/*
...
@@ -4116,6 +4118,8 @@ query_find(ns_client_t *client, dns_fetchevent_t *event, dns_rdatatype_t qtype)
...
@@ -4116,6 +4118,8 @@ query_find(ns_client_t *client, dns_fetchevent_t *event, dns_rdatatype_t qtype)
client
->
query
.
qname
=
fname
;
client
->
query
.
qname
=
fname
;
fname
=
NULL
;
fname
=
NULL
;
want_restart
=
ISC_TRUE
;
want_restart
=
ISC_TRUE
;
if
(
!
WANTRECURSION
(
client
))
options
|=
DNS_GETDB_NOLOG
;
goto
addauth
;
goto
addauth
;
default:
default:
/*
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment