aboutsummaryrefslogtreecommitdiff
path: root/networking/udhcp/script.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/udhcp/script.c')
-rw-r--r--networking/udhcp/script.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/script.c b/networking/udhcp/script.c
index b4413fa16..400fd2b9b 100644
--- a/networking/udhcp/script.c
+++ b/networking/udhcp/script.c
@@ -64,7 +64,7 @@ static NOINLINE char *xmalloc_optname_optval(uint8_t *option, const struct dhcp_
64 64
65 /* option points to OPT_DATA, need to go back and get OPT_LEN */ 65 /* option points to OPT_DATA, need to go back and get OPT_LEN */
66 len = option[OPT_LEN - OPT_DATA]; 66 len = option[OPT_LEN - OPT_DATA];
67 type = type_p->flags & TYPE_MASK; 67 type = type_p->flags & OPTION_TYPE_MASK;
68 optlen = dhcp_option_lengths[type]; 68 optlen = dhcp_option_lengths[type];
69 upper_length = len_of_option_as_string[type] * (len / optlen); 69 upper_length = len_of_option_as_string[type] * (len / optlen);
70 70