Skip to content

Commit

Permalink
Fix args... again
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Mar 21, 2019
1 parent a36eb02 commit e5c898c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/proto_dhcpv4/proto_dhcpv4.c
Expand Up @@ -397,7 +397,7 @@ static ssize_t mod_encode(void const *instance, REQUEST *request, uint8_t *buffe
if (data_len > 0) return data_len;
}

data_len = fr_dhcpv4_encode(buffer, buffer_len, request->reply->code, original,
data_len = fr_dhcpv4_encode(buffer, buffer_len, original, request->reply->code,
ntohl(original->xid), request->reply->vps);
if (data_len < 0) {
RPEDEBUG("Failed encoding DHCPV4 reply");
Expand Down

0 comments on commit e5c898c

Please sign in to comment.