udhcp6: move misplaced comment

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2017-03-27 22:49:12 +02:00
parent ed898ed2dd
commit ab03061615

View File

@ -152,8 +152,8 @@ static char** new_env(void)
/* put all the parameters into the environment */
static void option_to_env(uint8_t *option, uint8_t *option_end)
{
/* "length minus 4" */
char *dlist, *ptr;
/* "length minus 4" */
int len_m4 = option_end - option - 4;
int olen, ooff;
while (len_m4 >= 0) {