Changeset 1013


Ignore:
Timestamp:
01/30/26 15:38:15 (21 hours ago)
Author:
Kris Deugau
Message:

/branches/cname-collision

Fix minor cosmetic logging bug due to normalization changes in r973

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/cname-collision/DNSDB.pm

    r1003 r1013  
    50455045  $logdata{entry} .= "', TTL $ttl";
    50465046  $logdata{entry} .= ", location ".$self->getLoc($location)->{description} if $location;
    5047   $logdata{entry} .= ($expires ? ', expires at ' : ', valid after ').$stamp if $stamp;
     5047  $logdata{entry} .= ($expires eq 't' ? ', expires at ' : ', valid after ').$stamp if $stamp;
    50485048
    50495049  # Allow transactions, and raise an exception on errors so we can catch it later.
     
    52775277  $logdata{entry} .= "', TTL $ttl";
    52785278  $logdata{entry} .= ", location ".$self->getLoc($location)->{description} if $location;
    5279   $logdata{entry} .= ($expires ? ', expires at ' : ', valid after ').$stamp if $stamp;
     5279  $logdata{entry} .= ($expires eq 't' ? ', expires at ' : ', valid after ').$stamp if $stamp;
    52805280
    52815281  local $dbh->{AutoCommit} = 0;
Note: See TracChangeset for help on using the changeset viewer.