Skip to content

Commit

Permalink
added 4 spaces on line breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
spoljak-ent committed Nov 22, 2024
1 parent c68cea4 commit 1f3cd2d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/dhcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1155,11 +1155,11 @@ 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,
(uint8_t)vivco->len) == -1)
if (rfc3396_write_byte(&rctx,
(uint8_t)vivco->len) == -1)
goto toobig;
if (rfc3396_write(&rctx,
vivco->data, vivco->len) == -1)
if (rfc3396_write(&rctx,
vivco->data, vivco->len) == -1)
goto toobig;
*lp = (uint8_t)(*lp + vivco->len + 1);
}
Expand Down

0 comments on commit 1f3cd2d

Please sign in to comment.