Skip to content

Commit

Permalink
forgot to remove the space after the comma :(
Browse files Browse the repository at this point in the history
  • Loading branch information
spoljak-ent committed Nov 22, 2024
1 parent 1f3cd2d commit d7075fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dhcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1155,10 +1155,10 @@ make_message(struct bootp **bootpm, const struct interface *ifp, uint8_t type)
lp = rfc3396_zero(&rctx);
if (lp == NULL)
goto toobig;
if (rfc3396_write_byte(&rctx,
if (rfc3396_write_byte(&rctx,
(uint8_t)vivco->len) == -1)
goto toobig;
if (rfc3396_write(&rctx,
if (rfc3396_write(&rctx,
vivco->data, vivco->len) == -1)
goto toobig;
*lp = (uint8_t)(*lp + vivco->len + 1);
Expand Down

0 comments on commit d7075fe

Please sign in to comment.