Fix dns_retry definition.
authorTodd Lyons <tlyons@exim.org>
Wed, 8 May 2013 12:46:00 +0000 (05:46 -0700)
committerTodd Lyons <tlyons@exim.org>
Wed, 8 May 2013 12:46:00 +0000 (05:46 -0700)
Was placed in non-alphabetical order.

doc/doc-txt/ChangeLog
src/src/readconf.c

index 552103b9e06b2553a94ef1f7284efe3248c6c3e1..f06946a73bad8c3cfc9d332b9c0229e40fe5ff1b 100644 (file)
@@ -46,6 +46,9 @@ TL/05 Bugzilla 1285 - Spec omission, fix docbook errors for spec.txt creation.
 
 TL/06 Add Experimental DMARC support using libopendmarc libraries.
 
+TL/07 Fix an out of order global option causing a segfault.  Reported to dev
+      mailing list by by Dmitry Isaikin.
+
 JH/01 Bugzilla 1201 & 304 - New cutthrough-delivery feature, with TLS support.
 
 JH/02 Support "G" suffix to numbers in ${if comparisons.
index ba69546a3381f8d34cf6a4ed546d51fbae739122..c2785b79af1eeeaf4c08625bc8a4cb4ce241bd9b 100644 (file)
@@ -221,10 +221,10 @@ static optionlist optionlist_config[] = {
   { "dns_check_names_pattern",  opt_stringptr,   &check_dns_names_pattern },
   { "dns_csa_search_limit",     opt_int,         &dns_csa_search_limit },
   { "dns_csa_use_reverse",      opt_bool,        &dns_csa_use_reverse },
+  { "dns_dnssec_ok",            opt_int,         &dns_dnssec_ok },
   { "dns_ipv4_lookup",          opt_stringptr,   &dns_ipv4_lookup },
   { "dns_retrans",              opt_time,        &dns_retrans },
   { "dns_retry",                opt_int,         &dns_retry },
-  { "dns_dnssec_ok",            opt_int,         &dns_dnssec_ok },
   { "dns_use_edns0",            opt_int,         &dns_use_edns0 },
  /* This option is now a no-op, retained for compability */
   { "drop_cr",                  opt_bool,        &drop_cr },