Changeset 471
- Timestamp:
- 03/12/13 16:33:59 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/DNSDB.pm
r470 r471 2117 2117 } 2118 2118 my $addr; 2119 if ( _ipparent($dbh,'n', 'y', \$tmpval, $rdns_id, \$addr)) {2119 if ($self->_ipparent('n', 'y', \$tmpval, $rdns_id, \$addr)) { 2120 2120 $val = $addr->addr; 2121 2121 } else { … … 2133 2133 my $domid = 0; 2134 2134 if ($type >= 65280) { 2135 if (!($domid = _hostparent($dbh,$host))) {2135 if (!($domid = $self->_hostparent($host))) { 2136 2136 $warnstr .= "\nRecord added as PTR instead of $typemap{$type}; domain not found for $host"; 2137 2137 $type = $reverse_typemap{PTR}; … … 2166 2166 2167 2167 my $domid = 0; 2168 if (!($domid = _hostparent($dbh,$host))) {2168 if (!($domid = $self->_hostparent($host))) { 2169 2169 $warnstr .= "\nDefault pattern added as PTR template instead of $typemap{$type}; domain not found for $host"; 2170 2170 $type = 65282;
Note:
See TracChangeset
for help on using the changeset viewer.