Changeset 876


Ignore:
Timestamp:
01/05/23 17:45:36 (16 months ago)
Author:
Kris Deugau
Message:

/trunk

Fix up a few more places requiring dot-terminated FQDNs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/DNSDB/ExportBIND.pm

    r875 r876  
    526526#    ($host,$val) = __revswap($host,$val) if $revrec eq 'y';
    527527#    print {$zonefiles->{$loc}} "$host  $ttl    IN      SRV     $distance   $weight $port   $val\n" or die $!;
    528     my $recdata = "$host        $ttl    IN      SRV     $distance       $weight $port   $val\n";
     528    my $recdata = "$host        $ttl    IN      SRV     $distance       $weight $port   $val.\n";
    529529    recprint($zonefiles, $loclist, $loc, $recdata);
    530530  } # SRV
     
    533533#    ($host,$val) = __revswap($host,$val) if $revrec eq 'y';
    534534#    print {$zonefiles->{$loc}} "$host  $ttl    IN      RP      $val\n" or die $!;
    535     my $recdata = "$host        $ttl    IN      RP      $val\n";
     535    my $recdata = "$host.       $ttl    IN      RP      $val\n";
    536536    recprint($zonefiles, $loclist, $loc, $recdata);
    537537  } # RP
     
    576576      # fingers and close our eyes and make it Someone Else's Problem.
    577577#      print {$zonefiles->{$loc}} "$host        $ttl    IN      PTR     $val\n" or die $!;
    578       my $recdata = "$host      $ttl    IN      PTR     $val\n";
     578      my $recdata = "$host.     $ttl    IN      PTR     $val.\n";
    579579      recprint($zonefiles, $loclist, $loc, $recdata);
    580580    }
Note: See TracChangeset for help on using the changeset viewer.