Commit b0ff858e authored by Simon Kelley's avatar Simon Kelley

Fix FTBFS if HAVE_BROKEN_RTC defined.

parent 54dae552
...@@ -158,10 +158,10 @@ int main (int argc, char **argv) ...@@ -158,10 +158,10 @@ int main (int argc, char **argv)
now = dnsmasq_time(); 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) if (daemon->authinterface && daemon->soa_sn == 0)
#ifdef HAVE_BROKEN_RTC #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 #else
daemon->soa_sn = now; daemon->soa_sn = now;
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment