enh(scan class): Add return for set_Host_Error method
This commit is contained in:
parent
4660bc3b99
commit
e893267c60
@ -620,6 +620,8 @@ class scan
|
||||
* @param int $tgt_id
|
||||
* @param boolean $is_error
|
||||
* @param string $err_msg
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
public function set_Host_Error($tgt_id, $is_error, $err_msg = null)
|
||||
{
|
||||
@ -628,9 +630,11 @@ class scan
|
||||
if($h->getTargetId() == $tgt_id) {
|
||||
$this->host_list[$x]->setScanError($is_error);
|
||||
$this->host_list[$x]->setScanNotes($err_msg);
|
||||
break;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user