mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
- Fix warning for unused variable for compilation without systemd.
This commit is contained in:
parent
a90f173875
commit
8cb3656b3e
2 changed files with 3 additions and 0 deletions
|
|
@ -575,7 +575,9 @@ void
|
||||||
daemon_fork(struct daemon* daemon)
|
daemon_fork(struct daemon* daemon)
|
||||||
{
|
{
|
||||||
int have_view_respip_cfg = 0;
|
int have_view_respip_cfg = 0;
|
||||||
|
#ifdef HAVE_SYSTEMD
|
||||||
int ret;
|
int ret;
|
||||||
|
#endif
|
||||||
|
|
||||||
log_assert(daemon);
|
log_assert(daemon);
|
||||||
if(!(daemon->views = views_create()))
|
if(!(daemon->views = views_create()))
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
|
|
||||||
14 August 2019: Wouter
|
14 August 2019: Wouter
|
||||||
- Generate configlexer with newer flex.
|
- Generate configlexer with newer flex.
|
||||||
|
- Fix warning for unused variable for compilation without systemd.
|
||||||
|
|
||||||
12 August 2019: George
|
12 August 2019: George
|
||||||
- Introduce `-V` option to print the version number and build options.
|
- Introduce `-V` option to print the version number and build options.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue