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
812ed4ef
Commit
812ed4ef
authored
Jan 08, 2001
by
Andreas Gustafsson
Browse files
removed pointless cast
parent
10cd4cf3
Changes
1
Hide whitespace changes
Inline
Side-by-side
bin/dig/dig.c
View file @
812ed4ef
...
...
@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: dig.c,v 1.13
1
200
0/12/11 19:15:44 bwelling
Exp $ */
/* $Id: dig.c,v 1.13
2
200
1/01/08 23:45:57 gson
Exp $ */
#include
<config.h>
#include
<stdlib.h>
...
...
@@ -1378,8 +1378,7 @@ main(int argc, char **argv) {
s
,
default_lookup
);
s2
=
s
;
s
=
ISC_LIST_NEXT
(
s
,
link
);
ISC_LIST_DEQUEUE
(
default_lookup
->
my_server_list
,
(
dig_server_t
*
)
s2
,
link
);
ISC_LIST_DEQUEUE
(
default_lookup
->
my_server_list
,
s2
,
link
);
isc_mem_free
(
mctx
,
s2
);
}
isc_mem_free
(
mctx
,
default_lookup
);
...
...
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