Changeset 679 for trunk


Ignore:
Timestamp:
02/18/15 17:59:27 (9 years ago)
Author:
Kris Deugau
Message:

/trunk

  • A little touch of whitespace and comment tweakery for clarity.
  • Tweak handling of large template chunks (/16 and larger) for slightly more precise handling, and dodging a remote edge case right on /16.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/DNSDB.pm

    r677 r679  
    43144314  my $self = shift;
    43154315  my $dbh = $self->{dbh};
     4316
    43164317  my $defrec = shift;
    43174318  my $revrec = shift;
     
    60026003      }
    60036004    }
    6004   }
     6005  } # __publish_subnet
    60056006
    60066007## And now the meat.
     
    62316232    return if $val->{isv6};
    62326233
    6233     if ($val->masklen <= 16) {
     6234    if ($val->masklen < 16) {
    62346235      foreach my $sub ($val->split(16)) {
    62356236        $self->__publish_subnet($sub, $recflags, $host, $datafile, $ttl, $stamp, $loc, $zone, 0);
Note: See TracChangeset for help on using the changeset viewer.