The dns_catz_update_from_db() function prints serial number as a signed number (with "%d" in the format string), but the `vers` variable's type is 'uint32_t'. This breaks serials bigger than 2^31. Use PRIu32 instead of "d" in the format string.
The dns_catz_update_from_db() function prints serial number as a signed number (with "%d" in the format string), but the `vers` variable's type is 'uint32_t'. This breaks serials bigger than 2^31. Use PRIu32 instead of "d" in the format string.