From c0703f48feb39381acd37666debf79706b1d17e8 Mon Sep 17 00:00:00 2001 From: AnotherTest Date: Mon, 15 Feb 2021 21:35:12 +0330 Subject: DHCPClient: Fix incorrect BOOTP Broadcast flag value This is supposed to be the MSB, not the LSB. --- Userland/Services/DHCPClient/DHCPv4.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Services/DHCPClient') diff --git a/Userland/Services/DHCPClient/DHCPv4.h b/Userland/Services/DHCPClient/DHCPv4.h index a773167683..c5738c6cf7 100644 --- a/Userland/Services/DHCPClient/DHCPv4.h +++ b/Userland/Services/DHCPClient/DHCPv4.h @@ -39,7 +39,7 @@ #include enum class DHCPv4Flags : u16 { - Broadcast = 1, + Broadcast = 1 << 15, /* everything else is reserved and must be zero */ }; -- cgit v1.2.3