summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2015-06-16 13:20:15 +1000
committerChris Johns <chrisj@rtems.org>2015-06-16 13:20:15 +1000
commitaffed5e3f586860e2fd97445eaa20674dc4bcd25 (patch)
tree8523f1e729dc941ad96d9e15b1f16d86c8df4aba
parentTCPDUMP and PCAP fixes to defines. (diff)
downloadrtems-libbsd-affed5e3f586860e2fd97445eaa20674dc4bcd25.tar.bz2
Add BDS command support headers.
-rw-r--r--freebsd/contrib/tcpdump/tcpdump.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/freebsd/contrib/tcpdump/tcpdump.c b/freebsd/contrib/tcpdump/tcpdump.c
index 32ffb456..00e44dbf 100644
--- a/freebsd/contrib/tcpdump/tcpdump.c
+++ b/freebsd/contrib/tcpdump/tcpdump.c
@@ -55,6 +55,8 @@ static const char rcsid[] _U_ =
#define __need_getopt_newlib
#include <getopt.h>
#define setpriority(a, b, c)
+#include <machine/rtems-bsd-program.h>
+#include <machine/rtems-bsd-commands.h>
#endif
#include <tcpdump-stdinc.h>
@@ -357,7 +359,7 @@ static const struct ndo_printer ndo_printers[] = {
if_printer
lookup_printer(int type)
{
- struct printer *p;
+ const struct printer *p;
for (p = printers; p->f; ++p)
if (type == p->type)
@@ -370,7 +372,7 @@ lookup_printer(int type)
if_ndo_printer
lookup_ndo_printer(int type)
{
- struct ndo_printer *p;
+ const struct ndo_printer *p;
for (p = ndo_printers; p->f; ++p)
if (type == p->type)