mirror of
https://github.com/lgandx/Responder.git
synced 2025-08-20 21:33:31 -07:00
changed operand
This commit is contained in:
parent
3261288c82
commit
cb9c2c8b97
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ class MDNS(BaseRequestHandler):
|
|||
Request_Name = Parse_MDNS_Name(data)
|
||||
|
||||
# Break out if we don't want to respond to this host
|
||||
if Request_name and RespondToThisHost(self.client_address[0], Request_Name) is not True:
|
||||
if (not Request_name) or (RespondToThisHost(self.client_address[0], Request_Name) is not True):
|
||||
return None
|
||||
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue