1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-30 06:25:37 +03:00

sd-network: stop using fake flexible array

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2023-02-05 20:17:21 +01:00
parent 99d4dfd184
commit d42add3c17

View File

@ -28,7 +28,7 @@ struct DHCPMessage {
uint8_t sname[64];
uint8_t file[128];
be32_t magic;
uint8_t options[0];
uint8_t options[];
} _packed_;
typedef struct DHCPMessage DHCPMessage;