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
8549bc9b
Commit
8549bc9b
authored
Jan 06, 2006
by
Mark Andrews
Browse files
1967. [func] dig/nslookup/host: warn about missing QR. [RT #15779]
parent
14c80ce1
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
8549bc9b
1967. [func] dig/nslookup/host: warn about missing "QR". [RT #15779]
1966. [bug] Don't set CD when we have fallen back to plain DNS.
[RT #15727]
...
...
bin/dig/dighost.c
View file @
8549bc9b
...
...
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: dighost.c,v 1.28
8
200
5/10/14 01:14:06
marka Exp $ */
/* $Id: dighost.c,v 1.28
9
200
6/01/06 00:54:21
marka Exp $ */
/*! \file
* \note
...
...
@@ -2799,6 +2799,9 @@ recv_done(isc_task_t *task, isc_event_t *event) {
"(< header size) message received
\n
"
);
}
if
(
result
==
ISC_R_SUCCESS
&&
(
msgflags
&
DNS_MESSAGEFLAG_QR
)
==
0
)
printf
(
";; Warning: query response not set
\n
"
);
if
(
!
match
)
{
isc_buffer_invalidate
(
&
query
->
recvbuf
);
isc_buffer_init
(
&
query
->
recvbuf
,
query
->
recvspace
,
COMMSIZE
);
...
...
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