From b633de94131361b28f47aa59d91e3eef49575942 Mon Sep 17 00:00:00 2001 From: Simon Kelley Date: Wed, 6 Jan 2016 22:51:17 +0000 Subject: [PATCH] Fix FTBFS when scripts excluded at compilation time. --- src/dnsmasq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dnsmasq.c b/src/dnsmasq.c index 41d4f4e..8032fc7 100644 --- a/src/dnsmasq.c +++ b/src/dnsmasq.c @@ -937,7 +937,7 @@ int main (int argc, char **argv) while (do_script_run(now)); # endif - while (do_arp_script_run(now)); + while (do_arp_script_run()); # ifdef HAVE_TFTP while (do_tftp_script_run());