From 9e5b35a12d96832b41b166e6aa01ea7a8012f232 Mon Sep 17 00:00:00 2001 From: Emmanuel Blot Date: Fri, 10 Apr 2020 18:40:07 +0200 Subject: [PATCH] Fix invalid variable to track buggy clients --- pybootd/pxed.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pybootd/pxed.py b/pybootd/pxed.py index 8d49a29..e32ed95 100644 --- a/pybootd/pxed.py +++ b/pybootd/pxed.py @@ -751,7 +751,9 @@ class BootpServer: if pxe: self.uuidpool[mac_addr] = uuid - if mac_addr in self.buggy_clients: + if mac_str in self.buggy_clients: + self.log.debug('Force global broadcast for buggy client %s', + mac_str) addr = ('255.255.255.255', addr[1]) # send the response