Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Sergei Trofimovich
BIND
Commits
edab51b4
Commit
edab51b4
authored
Jul 30, 2019
by
Evan Hunt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor bugfix in mdig: when using +multi, +norrcomments was ignored
parent
5d5cf12a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
bin/tools/mdig.c
bin/tools/mdig.c
+9
-6
No files found.
bin/tools/mdig.c
View file @
edab51b4
...
...
@@ -94,7 +94,7 @@ static bool besteffort = true;
static
bool
display_short_form
=
false
;
static
bool
display_headers
=
true
;
static
bool
display_comments
=
true
;
static
bool
display_rrcomments
=
true
;
static
int
display_rrcomments
=
0
;
static
bool
display_ttlunits
=
true
;
static
bool
display_ttl
=
true
;
static
bool
display_class
=
true
;
...
...
@@ -247,7 +247,7 @@ recvresponse(isc_task_t *task, isc_event_t *event) {
styleflags
|=
DNS_STYLEFLAG_COMMENT
;
if
(
display_unknown_format
)
styleflags
|=
DNS_STYLEFLAG_UNKNOWNFORMAT
;
if
(
display_rrcomments
)
if
(
display_rrcomments
>
0
)
styleflags
|=
DNS_STYLEFLAG_RRCOMMENT
;
if
(
display_ttlunits
)
styleflags
|=
DNS_STYLEFLAG_TTL_UNITS
;
...
...
@@ -265,7 +265,10 @@ recvresponse(isc_task_t *task, isc_event_t *event) {
styleflags
|=
DNS_STYLEFLAG_TTL
;
styleflags
|=
DNS_STYLEFLAG_MULTILINE
;
styleflags
|=
DNS_STYLEFLAG_COMMENT
;
styleflags
|=
DNS_STYLEFLAG_RRCOMMENT
;
/* Turn on rrcomments unless explicitly disabled */
if
(
display_rrcomments
>=
0
)
{
styleflags
|=
DNS_STYLEFLAG_RRCOMMENT
;
}
}
if
(
display_multiline
||
(
!
display_ttl
&&
!
display_class
))
result
=
dns_master_stylecreate
(
&
style
,
styleflags
,
...
...
@@ -1100,7 +1103,7 @@ plus_option(char *option, struct query *query, bool global)
display_authority
=
state
;
display_additional
=
state
;
display_comments
=
state
;
display_rrcomments
=
state
;
display_rrcomments
=
state
?
1
:
-
1
;
break
;
case
'n'
:
/* answer */
FULLCHECK
(
"answer"
);
...
...
@@ -1349,7 +1352,7 @@ plus_option(char *option, struct query *query, bool global)
case
'r'
:
FULLCHECK
(
"rrcomments"
);
GLOBAL
();
display_rrcomments
=
state
;
display_rrcomments
=
state
?
1
:
-
1
;
break
;
default:
goto
invalid_option
;
...
...
@@ -1367,7 +1370,7 @@ plus_option(char *option, struct query *query, bool global)
display_authority
=
false
;
display_additional
=
false
;
display_comments
=
false
;
display_rrcomments
=
false
;
display_rrcomments
=
-
1
;
}
break
;
case
'p'
:
/* split */
...
...
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