freebsd-ports/dns/gresolver/files/bind9.diff
Joe Marcus Clarke c583253a64 Add gresolver, a graphical DNS query tool using GTK+. It allows system
administrators to quickly and easily make the most common DNS queries
without constructing lengthy dig commands.

PR:		73030
Submitted by:	Jean-Yves Lefort <jylefort@brutele.be>
2004-10-23 18:12:40 +00:00

11 lines
418 B
Diff

--- gresolver.pl.orig Sat Oct 23 07:47:39 2004
+++ gresolver.pl Sat Oct 23 07:47:53 2004
@@ -160,7 +160,7 @@
### build the dig query:
my $cmd = join(' ', (
$dig,
- '+'.($recursive == 1 ? '' : 'no').'recursive',
+ '+'.($recursive == 1 ? '' : 'no').'recurse',
'+'.($additional == 1 ? '' : 'no').'additional',
'+'.($authoritative == 1 ? '' : 'no').'authority',
'+'.($trace == 1 ? '' : 'no').'trace',