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

Remove accidental non-standard alternative token 'or'

This commit is contained in:
dmiller
2015-04-06 00:28:35 +00:00
parent df26fa850c
commit be9793fe45

View File

@@ -638,7 +638,7 @@ NetBlock *NetBlockHostname::resolve() const {
return NULL;
sp = first_af_address(&resolvedaddrs, this->af);
if (sp == NULL or sp->ss_family != this->af) {
if (sp == NULL || sp->ss_family != this->af) {
switch (this->af) {
case AF_INET:
error("Warning: Hostname %s resolves, but not to any IPv4 address. Try scanning with -6", this->hostname.c_str());