diff options
author | Denis Ovsienko <infrastation@yandex.ru> | 2014-03-15 14:19:49 +0400 |
---|---|---|
committer | Denis Ovsienko <infrastation@yandex.ru> | 2014-03-15 14:19:49 +0400 |
commit | 1fe6e66ecec3fb7a7cc729038012cbb264542331 (patch) | |
tree | 994f5218d7609bedbd50f207d1b15e43f661be50 /print-igrp.c | |
parent | 85a2dd977cad3e21b475abbedeb795989207b8db (diff) | |
download | tcpdump-1fe6e66ecec3fb7a7cc729038012cbb264542331.tar.gz |
make use of NETDISSECT_REWORKED
Update the already converted decoders to define the macro and to include
interface.h instead of netdissect.h. Fix incurred compile errors.
Diffstat (limited to 'print-igrp.c')
-rw-r--r-- | print-igrp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/print-igrp.c b/print-igrp.c index 8234a88d..794f0c52 100644 --- a/print-igrp.c +++ b/print-igrp.c @@ -21,13 +21,14 @@ * Initial contribution from Francis Dupont (francis.dupont@inria.fr) */ +#define NETDISSECT_REWORKED #ifdef HAVE_CONFIG_H #include "config.h" #endif #include <tcpdump-stdinc.h> -#include "netdissect.h" +#include "interface.h" #include "extract.h" /* must come after interface.h */ /* Cisco IGRP definitions */ |