home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume43
/
dnswalk
/
patch01
< prev
next >
Wrap
Internet Message Format
|
1994-07-05
|
2KB
From: barr@pop.psu.edu (David Barr)
Newsgroups: comp.sources.misc
Subject: v43i071: dnswalk - A DNS database debugger, Patch01
Date: 5 Jul 1994 21:34:49 -0500
Organization: Penn State Population Research Institute
Sender: root@sparky.sterling.com
Approved: kent@sparky.sterling.com
Message-ID: <2vd589$pcs@sparky.sterling.com>
X-Md4-Signature: 9c5172bc236d5d15d4b61d0499e6f66b
Submitted-by: barr@pop.psu.edu (David Barr)
Posting-number: Volume 43, Issue 71
Archive-name: dnswalk/patch01
Environment: Perl, Dig, DNS
Patch-To: dnswalk: Volume 43, Issue 50
A silly one-line fix. This will give you dnswalk version 1.8.1.
*** 1.5 1994/06/29 18:21:54
--- CHANGES 1994/06/29 18:22:34
***************
*** 1,4 ****
--- 1,8 ----
$Id: CHANGES,v 1.5 1994/06/29 18:21:54 barr Exp barr $
+ Version 1.8.1
+ One-line fix to remove reference to non-existent parameter to getmaster().
+ Reported by petri@ibr.cs.tu-bs.de (Stefan Petri).
+
Version 1.8
Typos, documentation corrections, additions to TIPS as well as
stuff for TODO from Piete Brooks <Piete.Brooks@cl.cam.ac.uk>.
*** 1.9 1994/06/27 14:13:24
--- dnswalk 1994/06/29 18:13:45
***************
*** 221,227 ****
sub getmaster { # return 'master' server for zone
local ($master)="";
$SIG{'INT'}="nop;";
! open(DIG,"dig soa $_[0] \@$_[1] 2>/dev/null|");
while (<DIG>) {
if (/.*\t\d+\tSOA\t(\S+) /) {
$master=$1;
--- 221,227 ----
sub getmaster { # return 'master' server for zone
local ($master)="";
$SIG{'INT'}="nop;";
! open(DIG,"dig soa $_[0] 2>/dev/null|");
while (<DIG>) {
if (/.*\t\d+\tSOA\t(\S+) /) {
$master=$1;
--
"WAIS is the Pinto of the Information Superhighway" - me
exit 0 # Just in case...