Skip to content
GitLab
Menu
Projects
Groups
Snippets
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
575db903
Commit
575db903
authored
Aug 08, 2000
by
Andreas Gustafsson
Browse files
375. [bug] Per-zone allow-query did not properly override the
view/global one for CNAME targets and additional data [RT
#220
].
parent
cb8a455c
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
575db903
375. [bug] Per-zone "allow-query" did not properly override the
view/global one for CNAME targets and additional
data [RT #220].
374. [bug] SOA in authoritative negative responses had wrong TTL.
373. [func] nslookup is now installed by "make install".
372. [bug] Deal with Microsoft DNS servers appending two bytes of
...
...
bin/named/query.c
View file @
575db903
...
...
@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: query.c,v 1.12
1
2000/08/08
00:46:00
gson Exp $ */
/* $Id: query.c,v 1.12
2
2000/08/08
17:14:33
gson Exp $ */
#include <config.h>
...
...
@@ -516,7 +516,6 @@ query_getzonedb(ns_client_t *client, dns_name_t *name, unsigned int options,
return
(
DNS_R_SERVFAIL
);
*
versionp
=
dbversion
->
version
;
if
(
new_zone
)
{
queryacl
=
dns_zone_getqueryacl
(
*
zonep
);
check_acl
=
ISC_TRUE
;
}
else
if
(
!
dbversion
->
queryok
)
{
return
(
DNS_R_REFUSED
);
...
...
@@ -524,6 +523,7 @@ query_getzonedb(ns_client_t *client, dns_name_t *name, unsigned int options,
check_acl
=
ISC_FALSE
;
}
queryacl
=
dns_zone_getqueryacl
(
*
zonep
);
if
(
queryacl
==
NULL
)
{
queryacl
=
client
->
view
->
queryacl
;
if
((
client
->
query
.
attributes
&
...
...
Write
Preview
Supports
Markdown
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