mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix warning in windows compile, in set_recvtimestamp.
This commit is contained in:
parent
b2cba7b707
commit
1fb78afc29
2 changed files with 4 additions and 0 deletions
|
|
@ -1,3 +1,6 @@
|
||||||
|
11 May 2023: Wouter
|
||||||
|
- Fix warning in windows compile, in set_recvtimestamp.
|
||||||
|
|
||||||
4 May 2023: Wouter
|
4 May 2023: Wouter
|
||||||
- Fix #885: Error: util/configlexer.c: No such file or directory,
|
- Fix #885: Error: util/configlexer.c: No such file or directory,
|
||||||
adds error messages explaining to install flex and bison.
|
adds error messages explaining to install flex and bison.
|
||||||
|
|
|
||||||
|
|
@ -1130,6 +1130,7 @@ set_recvtimestamp(int s)
|
||||||
return 1;
|
return 1;
|
||||||
#else
|
#else
|
||||||
log_err("packets timestamping is not supported on this platform");
|
log_err("packets timestamping is not supported on this platform");
|
||||||
|
(void)s;
|
||||||
return 0;
|
return 0;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue