Changeset 845


Ignore:
Timestamp:
08/23/22 14:06:23 (21 months ago)
Author:
Kris Deugau
Message:

/trunk

... naturally, $host needs to be checked for %blank%, not $val

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/DNSDB.pm

    r844 r845  
    69876987
    69886988    # technically a PTR template thing, but Bad Data Happens
    6989     next if $val =~ /\%blank\%/;
     6989    next if $host =~ /\%blank\%/;
    69906990
    69916991    if ($revrec eq 'y') {
     
    70227022
    70237023    # technically a PTR template thing, but Bad Data Happens
    7024     next if $val =~ /\%blank\%/;
     7024    next if $host =~ /\%blank\%/;
    70257025
    70267026    print $datafile "=$host:$val:$ttl:$stamp:$loc\n" or die $!;
Note: See TracChangeset for help on using the changeset viewer.