From 9b40cbf587456b5eb3c2a4ede5b086a6c7887a7f Mon Sep 17 00:00:00 2001 From: Simon Kelley Date: Fri, 13 Jul 2012 19:58:26 +0100 Subject: [PATCH] Fix FTBFS when TFTP disabled. --- src/dnsmasq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dnsmasq.c b/src/dnsmasq.c index 38c400c..7e289df 100644 --- a/src/dnsmasq.c +++ b/src/dnsmasq.c @@ -125,7 +125,7 @@ int main (int argc, char **argv) #endif #ifndef HAVE_TFTP - if (option_bool(OPT_TFTP) + if (option_bool(OPT_TFTP)) die(_("TFTP server not available: set HAVE_TFTP in src/config.h"), NULL, EC_BADCONF); #endif