1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Remove leftover print-debugging statement

This commit is contained in:
dmiller
2024-05-06 18:20:30 +00:00
parent 801ae30dcc
commit 43e70c09d2

View File

@@ -1353,7 +1353,6 @@ bool DNS::Factory::ipToPtr(const sockaddr_storage &ip, std::string &ptr)
sprintf(tmp, "%d.%d.%d.%d", ipv4_c[3], ipv4_c[2], ipv4_c[1], ipv4_c[0]); sprintf(tmp, "%d.%d.%d.%d", ipv4_c[3], ipv4_c[2], ipv4_c[1], ipv4_c[0]);
ptr = tmp; ptr = tmp;
ptr += IPV4_PTR_DOMAIN; ptr += IPV4_PTR_DOMAIN;
error("ipToPtr: %s => %s", inet_ntop_ez(&ip, sizeof(ip)), ptr.c_str());
break; break;
} }
case AF_INET6: case AF_INET6: