Changeset 846


Ignore:
Timestamp:
09/01/22 11:55:16 (20 months ago)
Author:
Kris Deugau
Message:

/trunk

Shave off some more nuisance warnings by properly return'ing out of the
PTR and A+PTR branches of the giant record-type if-elsif in _printrec_tiny
instead of misusing next

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/DNSDB.pm

    r845 r846  
    69876987
    69886988    # technically a PTR template thing, but Bad Data Happens
    6989     next if $host =~ /\%blank\%/;
     6989    return if $host =~ /\%blank\%/;
    69906990
    69916991    if ($revrec eq 'y') {
     
    70227022
    70237023    # technically a PTR template thing, but Bad Data Happens
    7024     next if $host =~ /\%blank\%/;
     7024    return 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.