Skip to content
Snippets Groups Projects
Commit 3245e611 authored by Lubos Slovak's avatar Lubos Slovak
Browse files

Fix in EDNS - type for max size.

parent 0221222f
No related branches found
No related tags found
No related merge requests found
......@@ -233,7 +233,7 @@ int dnslib_edns_has_option(const dnslib_opt_rr_t *opt_rr, uint16_t code)
/*----------------------------------------------------------------------------*/
short dnslib_edns_to_wire(const dnslib_opt_rr_t *opt_rr, uint8_t *wire,
short max_size)
size_t max_size)
{
assert(DNSLIB_EDNS_MIN_SIZE <= max_size);
......
......@@ -203,7 +203,7 @@ int dnslib_edns_has_option(const dnslib_opt_rr_t *opt_rr, uint16_t code);
* \retval DNSLIB_ESPACE
*/
short dnslib_edns_to_wire(const dnslib_opt_rr_t *opt_rr, uint8_t *wire,
short max_size);
size_t max_size);
/*!
* \brief Returns size of the OPT RR in wire format.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment