Skip to content
GitLab
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
1a4d6873
Commit
1a4d6873
authored
Apr 17, 2003
by
Mark Andrews
Browse files
1468. [func] Internal zones are nolonger for 'rndc status'.
[RT #4706]
parent
397f86cf
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
1a4d6873
1468. [func] Internal zones are nolonger for 'rndc status'.
[RT #4706]
1467. [func] $GENERATES now supports optional class and ttl.
1466. [bug] lwresd configuration errors resulted in memory
...
...
bin/named/config.c
View file @
1a4d6873
...
...
@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: config.c,v 1.4
1
2003/0
2/27 05:12:47
marka Exp $ */
/* $Id: config.c,v 1.4
2
2003/0
4/17 12:11:39
marka Exp $ */
#include
<config.h>
...
...
@@ -153,6 +153,9 @@ options {\n\
ixfr-from-differences false;
\n
\
};
\n
\
\n
\
#
\n
\
# Zones in the
\"
_bind
\"
view are NOT counted is the count of zones.
\n
\
#
\n
\
view
\"
_bind
\"
chaos {
\n
\
recursion no;
\n
\
\n
\
...
...
lib/dns/zone.c
View file @
1a4d6873
...
...
@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: zone.c,v 1.38
6
2003/0
3/23
1
3
:1
8:53 jinmei
Exp $ */
/* $Id: zone.c,v 1.38
7
2003/0
4/17
1
2
:1
1:39 marka
Exp $ */
#include
<config.h>
...
...
@@ -6592,8 +6592,12 @@ dns_zonemgr_getcount(dns_zonemgr_t *zmgr, int state) {
case
DNS_ZONESTATE_ANY
:
for
(
zone
=
ISC_LIST_HEAD
(
zmgr
->
zones
);
zone
!=
NULL
;
zone
=
ISC_LIST_NEXT
(
zone
,
link
))
zone
=
ISC_LIST_NEXT
(
zone
,
link
))
{
dns_view_t
*
view
=
zone
->
view
;
if
(
view
!=
NULL
&&
strcmp
(
view
->
name
,
"_bind"
)
==
0
)
continue
;
count
++
;
}
break
;
default:
INSIST
(
0
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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