mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix unbound-dnstap-socket time fraction conversion for printout.
This commit is contained in:
parent
d57986724e
commit
512236d705
2 changed files with 2 additions and 1 deletions
|
|
@ -504,7 +504,7 @@ static char* tv_to_str(protobuf_c_boolean has_time_sec, uint64_t time_sec,
|
||||||
time_t time_t_sec;
|
time_t time_t_sec;
|
||||||
memset(&tv, 0, sizeof(tv));
|
memset(&tv, 0, sizeof(tv));
|
||||||
if(has_time_sec) tv.tv_sec = time_sec;
|
if(has_time_sec) tv.tv_sec = time_sec;
|
||||||
if(has_time_nsec) tv.tv_usec = time_nsec;
|
if(has_time_nsec) tv.tv_usec = time_nsec/1000;
|
||||||
|
|
||||||
buf[0]=0;
|
buf[0]=0;
|
||||||
time_t_sec = tv.tv_sec;
|
time_t_sec = tv.tv_sec;
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
25 May 2023: Wouter
|
25 May 2023: Wouter
|
||||||
- Fix unbound-dnstap-socket printout when no query is present.
|
- Fix unbound-dnstap-socket printout when no query is present.
|
||||||
|
- Fix unbound-dnstap-socket time fraction conversion for printout.
|
||||||
|
|
||||||
19 May 2023: Wouter
|
19 May 2023: Wouter
|
||||||
- Fix RPZ removal of client-ip, nsip, nsdname triggers from IXFR.
|
- Fix RPZ removal of client-ip, nsip, nsdname triggers from IXFR.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue