diff options
Diffstat (limited to 'gdhcp/common.c')
-rw-r--r-- | gdhcp/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdhcp/common.c b/gdhcp/common.c index 29b1f879..3c80edc6 100644 --- a/gdhcp/common.c +++ b/gdhcp/common.c @@ -272,7 +272,7 @@ void dhcp_add_simple_option(struct dhcp_packet *packet, uint8_t code, data <<= 8 * (4 - len); #endif - dhcp_put_unaligned(data, (uint32_t *) &option[OPT_DATA]); + dhcp_put_unaligned(data, (uint32_t *)(option + OPT_DATA)); dhcp_add_binary_option(packet, option); return; |