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
b514e0cd
Commit
b514e0cd
authored
Mar 31, 2005
by
Mark Andrews
Browse files
1841. [bug] "dig +nssearch" now makes a recursive query to
find the list of nameservers to query. [RT #13694]
parent
260be76e
Changes
4
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
b514e0cd
...
...
@@ -5,7 +5,8 @@
1842. [port] cmsg_len() could produce incorrect results on
some platform. [RT #13744]
1841. [placeholder] rt13694
1841. [bug] "dig +nssearch" now makes a recursive query to
find the list of nameservers to query. [RT #13694]
1840. [func] dnssec-signzone can now randomize signature end times
(dnssec-signzone -j jitter). [RT #13609]
...
...
bin/dig/dig.c
View file @
b514e0cd
...
...
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: dig.c,v 1.20
0
200
4/10/21 01:44:23
marka Exp $ */
/* $Id: dig.c,v 1.20
1
200
5/03/31 02:36:04
marka Exp $ */
#include
<config.h>
#include
<stdlib.h>
...
...
@@ -897,7 +897,7 @@ plus_option(char *option, isc_boolean_t is_batchfile,
lookup
->
ns_search_only
=
state
;
if
(
state
)
{
lookup
->
trace_root
=
ISC_TRUE
;
lookup
->
recurse
=
ISC_
FALS
E
;
lookup
->
recurse
=
ISC_
TRU
E
;
lookup
->
identify
=
ISC_TRUE
;
lookup
->
stats
=
ISC_FALSE
;
lookup
->
comments
=
ISC_FALSE
;
...
...
bin/dig/dighost.c
View file @
b514e0cd
...
...
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: dighost.c,v 1.27
2
200
4/11/22 23:29
:0
9
marka Exp $ */
/* $Id: dighost.c,v 1.27
3
200
5/03/31 02:36
:0
4
marka Exp $ */
/*
* Notice to programmers: Do not use this code as an example of how to
...
...
@@ -1481,6 +1481,8 @@ followup_lookup(dns_message_t *msg, dig_query_t *query, dns_section_t section)
lookup
->
ns_search_only
=
query
->
lookup
->
ns_search_only
;
lookup
->
trace_root
=
ISC_FALSE
;
if
(
lookup
->
ns_search_only
)
lookup
->
recurse
=
ISC_FALSE
;
dns_fixedname_init
(
&
lookup
->
fdomain
);
domain
=
dns_fixedname_name
(
&
lookup
->
fdomain
);
dns_name_copy
(
name
,
domain
,
NULL
);
...
...
bin/dig/include/dig/dig.h
View file @
b514e0cd
...
...
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: dig.h,v 1.8
8
200
4/10/21 01:44:24
marka Exp $ */
/* $Id: dig.h,v 1.8
9
200
5/03/31 02:36:05
marka Exp $ */
#ifndef DIG_H
#define DIG_H
...
...
@@ -35,7 +35,7 @@
#include
<isc/sockaddr.h>
#include
<isc/socket.h>
#define MXSERV
6
#define MXSERV
20
#define MXNAME (DNS_NAME_MAXTEXT+1)
#define MXRD 32
#define BUFSIZE 512
...
...
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