Mercurial > dnsbl
changeset 430:69d33c034a8e stable-6-0-62
include arpa/nameser.h earlier
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 03 Oct 2017 09:59:54 -0700 |
parents | 502f66414ab8 |
children | cb88e1291ac9 |
files | ChangeLog NEWS configure.in dnsbl.spec.in src/context.cpp src/dnsbl.cpp src/includes.h |
diffstat | 7 files changed, 9 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Oct 02 15:15:06 2017 -0700 +++ b/ChangeLog Tue Oct 03 09:59:54 2017 -0700 @@ -1,3 +1,6 @@ +6.62 2017-10-03 + include arpa/nameser.h earlier. + 6.61 2017-10-02 allow 4000 byte spf txt records.
--- a/NEWS Mon Oct 02 15:15:06 2017 -0700 +++ b/NEWS Tue Oct 03 09:59:54 2017 -0700 @@ -1,3 +1,4 @@ +6.62 2017-10-03 include arpa/nameser.h earlier 6.61 2017-10-02 allow 4000 byte spf txt records 6.60 2017-08-18 hosts-ignore.conf can be used to ignore nameserver names 6.59 2017-07-26 use both envelope from and header from for spf checks when envelope from is a subdomain of the header from domain.
--- a/configure.in Mon Oct 02 15:15:06 2017 -0700 +++ b/configure.in Tue Oct 03 09:59:54 2017 -0700 @@ -1,6 +1,6 @@ AC_PREREQ(2.59) -AC_INIT(dnsbl,6.61,carl@five-ten-sg.com) +AC_INIT(dnsbl,6.62,carl@five-ten-sg.com) AC_CONFIG_SRCDIR([config.h.in]) AC_CONFIG_HEADER([config.h]) AC_CONFIG_MACRO_DIR([m4])
--- a/dnsbl.spec.in Mon Oct 02 15:15:06 2017 -0700 +++ b/dnsbl.spec.in Tue Oct 03 09:59:54 2017 -0700 @@ -155,6 +155,9 @@ %changelog +* Tue Oct 03 2017 Carl Byington <carl@five-ten-sg.com> - 6.62-1 +- include arpa/nameser.h earlier + * Mon Oct 02 2017 Carl Byington <carl@five-ten-sg.com> - 6.61-1 - allow 4000 byte spf txt records
--- a/src/context.cpp Mon Oct 02 15:15:06 2017 -0700 +++ b/src/context.cpp Tue Oct 03 09:59:54 2017 -0700 @@ -9,7 +9,6 @@ #include "includes.h" #include <arpa/inet.h> -#include <arpa/nameser.h> #include <net/if.h> #include <netdb.h> #include <netinet/in.h>