fix: Support multiple mac address on static host binding
Some checks failed
Run Check Script / check (pull_request) Failing after 27s

This commit is contained in:
2025-09-03 08:38:30 -04:00
parent ceea03d6ce
commit 5142e2dd2d
6 changed files with 375 additions and 359 deletions

View File

@@ -21,7 +21,7 @@ impl From<&MacAddress> for String {
impl std::fmt::Display for MacAddress {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.write_fmt(format_args!("MacAddress {}", String::from(self)))
f.write_str(&String::from(self))
}
}