Skip to content

Commit

Permalink
Fix compilation if INET6 isn't defined.
Browse files Browse the repository at this point in the history
Addresses GitHub issue #541, but differently from the pull request (it
defines gen_gateway() with a function prototype rather than using a
pre-prototype-style definition).
  • Loading branch information
guyharris committed Jan 17, 2017
1 parent f80a4cb commit 470df10
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions gencode.c
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,8 @@ static struct block *gen_host6(compiler_state_t *, struct in6_addr *,
struct in6_addr *, int, int, int);
#endif
#ifndef INET6
static struct block *gen_gateway(const u_char *, bpf_u_int32 **, int, int);
static struct block *gen_gateway(compiler_state_t *, const u_char *,
bpf_u_int32 **, int, int);
#endif
static struct block *gen_ipfrag(compiler_state_t *);
static struct block *gen_portatom(compiler_state_t *, int, bpf_int32);
Expand Down Expand Up @@ -690,7 +691,9 @@ pcap_compile(pcap_t *p, struct bpf_program *program,
}
initchunks(&cstate);
cstate.no_optimize = 0;
#ifdef INET6
cstate.ai = NULL;
#endif
cstate.ic.root = NULL;
cstate.ic.cur_mark = 0;
cstate.bpf_pcap = p;
Expand Down Expand Up @@ -4902,11 +4905,8 @@ gen_host6(compiler_state_t *cstate, struct in6_addr *addr,

#ifndef INET6
static struct block *
gen_gateway(eaddr, alist, proto, dir)
const u_char *eaddr;
bpf_u_int32 **alist;
int proto;
int dir;
gen_gateway(compiler_state_t *cstate, const u_char *eaddr, bpf_u_int32 **alist,
int proto, int dir)
{
struct block *b0, *b1, *tmp;

Expand Down Expand Up @@ -6470,7 +6470,7 @@ gen_scode(compiler_state_t *cstate, const char *name, struct qual q)
alist = pcap_nametoaddr(name);
if (alist == NULL || *alist == NULL)
bpf_error(cstate, "unknown host '%s'", name);
b = gen_gateway(eaddr, alist, proto, dir);
b = gen_gateway(cstate, eaddr, alist, proto, dir);
free(eaddr);
return b;
#else
Expand Down

0 comments on commit 470df10

Please sign in to comment.