Fix FTBFS if HAVE_BROKEN_RTC defined.

This commit is contained in:
Simon Kelley
2013-02-06 09:57:47 +00:00
parent 54dae552b1
commit b0ff858e78

View File

@@ -158,10 +158,10 @@ int main (int argc, char **argv)
now = dnsmasq_time();
/* Create a serial at startup is not configured. */
/* Create a serial at startup if not configured. */
if (daemon->authinterface && daemon->soa_sn == 0)
#ifdef HAVE_BROKEN_RTC
die(_("zone serial must be configured in --auth-soa"));
die(_("zone serial must be configured in --auth-soa"), NULL, EC_BADCONF);
#else
daemon->soa_sn = now;
#endif