diff options
author | Francois-Xavier Le Bail <fx.lebail@yahoo.com> | 2015-09-11 13:22:56 +0200 |
---|---|---|
committer | Francois-Xavier Le Bail <fx.lebail@yahoo.com> | 2015-09-11 13:22:56 +0200 |
commit | f5fe14663d9ed32b7a995ed0924c04e705f74237 (patch) | |
tree | 11c4111a2660fbdc27800ae1bf2e8a513ee80ebc /addrtoname.c | |
parent | 99c91c3aec40b691641374f58e798bd8d6b657bd (diff) | |
download | tcpdump-f5fe14663d9ed32b7a995ed0924c04e705f74237.tar.gz |
libnetdissect code must include 'netdissect.h', not 'interface.h'
Moreover:
Remove netdissect.h include in interface.h
Move thiszone declaration in netdissect.h
Update a comment
Diffstat (limited to 'addrtoname.c')
-rw-r--r-- | addrtoname.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addrtoname.c b/addrtoname.c index 527f4055..3f04479c 100644 --- a/addrtoname.c +++ b/addrtoname.c @@ -57,7 +57,7 @@ extern int ether_ntohost(char *, const struct ether_addr *); #include <string.h> #include <stdlib.h> -#include "interface.h" +#include "netdissect.h" #include "addrtoname.h" #include "llc.h" #include "setsignal.h" |