mirror of
https://github.com/nmap/nmap.git
synced 2026-05-13 08:46:45 +00:00
Remove accidental non-standard alternative token 'or'
This commit is contained in:
parent
df26fa850c
commit
be9793fe45
1 changed files with 1 additions and 1 deletions
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue