Fix typo in log message

This commit is contained in:
Marek Wolan
2024-06-25 10:31:28 +00:00
parent 28dabad66b
commit a861ccb1ee

View File

@@ -143,7 +143,7 @@ class ARP(Service):
self.sys_log.info(f"Cannot send ARP request to a network address {str(target_ip_address)}")
return
if target_ip_address == outbound_network_interface.ip_network.broadcast_address:
self.sys_log.info(f"Cannot send ARP request to a broadcast addresss {str(target_ip_address)}")
self.sys_log.info(f"Cannot send ARP request to a broadcast address {str(target_ip_address)}")
return
self.sys_log.info(f"Sending ARP request from NIC {outbound_network_interface} for ip {target_ip_address}")