ispman/bin/functions dnsshow.functions.pl,1.4,1.5
Joerg Delker <[email protected]>
| Newsgroups | gmane.comp.isp.ispman.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/ispman/ispman/bin/functions
In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv11375/bin/functions
Modified Files:
dnsshow.functions.pl
Log Message:
fixed bug with TXT record display
Index: dnsshow.functions.pl
===================================================================
RCS file: /cvsroot/ispman/ispman/bin/functions/dnsshow.functions.pl,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- dnsshow.functions.pl 6 Jun 2006 22:15:31 -0000 1.4
+++ dnsshow.functions.pl 20 Jun 2006 18:13:20 -0000 1.5
@@ -44,7 +44,7 @@
my $domain = shift;
my $txtrecords = $ispman->getDNStXTRecords( $domain, @ARGV );
for (@$txtrecords) {
- print join "\t", ( $_->{'host'}, "IN", "TXT", $_->{'host'} );
+ print join "\t", ( $_->{'host'}, "IN", "TXT", $_->{'txt'} );
print "\n";
}
}