- Fix #2031: Double included headers

git-svn-id: file:///svn/unbound/trunk@4388 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Ralph Dolmans 2017-10-25 13:30:32 +00:00
parent d016f85110
commit e13088d911
5 changed files with 2 additions and 4 deletions

View file

@ -1,6 +1,7 @@
25 October 2017: Ralph 25 October 2017: Ralph
- Fixed libunbound manual typo. - Fixed libunbound manual typo.
- Fix #1949: [dnscrypt] make provider name mismatch more obvious. - Fix #1949: [dnscrypt] make provider name mismatch more obvious.
- Fix #2031: Double included headers
24 October 2017: Ralph 24 October 2017: Ralph
- Update B root ipv4 address. - Update B root ipv4 address.

View file

@ -52,7 +52,6 @@
#include "util/data/msgreply.h" #include "util/data/msgreply.h"
#include "util/data/msgparse.h" #include "util/data/msgparse.h"
#include "util/as112.h" #include "util/as112.h"
#include "util/config_file.h"
/* maximum RRs in an RRset, to cap possible 'endless' list RRs. /* maximum RRs in an RRset, to cap possible 'endless' list RRs.
* with 16 bytes for an A record, a 64K packet has about 4000 max */ * with 16 bytes for an A record, a 64K packet has about 4000 max */

View file

@ -433,7 +433,6 @@ rtt_test(void)
} }
#include "services/cache/infra.h" #include "services/cache/infra.h"
#include "util/config_file.h"
/* lookup and get key and data structs easily */ /* lookup and get key and data structs easily */
static struct infra_data* infra_lookup_host(struct infra_cache* infra, static struct infra_data* infra_lookup_host(struct infra_cache* infra,

View file

@ -14,7 +14,6 @@
#endif #endif
#include <ctype.h> #include <ctype.h>
#include <string.h>
#include <strings.h> #include <strings.h>
#ifdef HAVE_GLOB_H #ifdef HAVE_GLOB_H
# include <glob.h> # include <glob.h>

View file

@ -427,7 +427,7 @@ ub_winsock_tcp_wouldblock(struct ub_event* ev, int eventbits)
void ub_comm_base_now(struct comm_base* cb) void ub_comm_base_now(struct comm_base* cb)
{ {
#ifdef USE_MINI_EVENT #ifdef USE_MINI_EVENT
/** minievent updates the time when it blocks. */ /** minievent updates the time when it blocks. */
(void)cb; /* nothing to do */ (void)cb; /* nothing to do */
#else /* !USE_MINI_EVENT */ #else /* !USE_MINI_EVENT */