From be9793fe456c7b1b3e965bf19e3336af2aef5ae5 Mon Sep 17 00:00:00 2001 From: dmiller Date: Mon, 6 Apr 2015 00:28:35 +0000 Subject: [PATCH] Remove accidental non-standard alternative token 'or' --- TargetGroup.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TargetGroup.cc b/TargetGroup.cc index 7488c1eb1..188a8149e 100644 --- a/TargetGroup.cc +++ b/TargetGroup.cc @@ -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());