1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 03:17:34 +00:00

DHCPClient: Fix incorrect BOOTP Broadcast flag value

This is supposed to be the MSB, not the LSB.
This commit is contained in:
AnotherTest 2021-02-15 21:35:12 +03:30 committed by Andreas Kling
parent 4043e770e5
commit c0703f48fe

View file

@ -39,7 +39,7 @@
#include <string.h>
enum class DHCPv4Flags : u16 {
Broadcast = 1,
Broadcast = 1 << 15,
/* everything else is reserved and must be zero */
};