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
4bf3395d
Commit
4bf3395d
authored
Aug 12, 1999
by
Bob Halley
Browse files
allow DNS_DBFIND_NOWILD to be toggled
parent
ba2a3950
Changes
1
Show whitespace changes
Inline
Side-by-side
bin/tests/db_test.c
View file @
4bf3395d
...
...
@@ -609,6 +609,15 @@ main(int argc, char *argv[]) {
((
options
&
DNS_DBFIND_VALIDATEGLUE
)
!=
0
)
?
"TRUE"
:
"FALSE"
);
continue
;
}
else
if
(
strcmp
(
s
,
"!WC"
)
==
0
)
{
if
((
options
&
DNS_DBFIND_NOWILD
)
!=
0
)
options
&=
~
DNS_DBFIND_NOWILD
;
else
options
|=
DNS_DBFIND_NOWILD
;
printf
(
"wildcard matching = %s
\n
"
,
((
options
&
DNS_DBFIND_NOWILD
)
==
0
)
?
"TRUE"
:
"FALSE"
);
continue
;
}
else
if
(
strcmp
(
s
,
"!LS"
)
==
0
)
{
DBI_CHECK
(
dbi
);
list
(
dbi
);
...
...
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