Skip to content
Snippets Groups Projects
Commit 8c94968e authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

Merge !1386: lib/utils: fix timestamp format in dumps of records

parents 581dbc33 6647f383
No related branches found
No related tags found
1 merge request!1386lib/utils: fix timestamp format in dumps of records
Pipeline #110622 passed with warnings
Knot Resolver 5.6.1 (2023-0m-dd)
================================
Bugfixes
--------
- fix unusual timestamp format in debug dumps of records (!1386)
Knot Resolver 5.6.0 (2023-01-26)
================================
......
......@@ -1199,6 +1199,11 @@ char *kr_pkt_text(const knot_pkt_t *pkt)
const knot_dump_style_t KR_DUMP_STYLE_DEFAULT = { /* almost all = false, */
.show_ttl = true,
#if KNOT_VERSION_HEX >= 0x030200
.human_timestamp = true,
#else
.human_tmstamp = true,
#endif
};
char *kr_rrset_text(const knot_rrset_t *rr)
......
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