summaryrefslogtreecommitdiff
path: root/tcpdump.c
diff options
context:
space:
mode:
authorguy <guy>2007-09-24 23:46:26 +0000
committerguy <guy>2007-09-24 23:46:26 +0000
commit3a34763284ac850d0194a7d4d01a482d5e4aa703 (patch)
tree9f4e7894d0c934bba8a59ef9954d3c57d7f72c82 /tcpdump.c
parentc202a9fa8922a7b5f7677232d6a232150e6686d0 (diff)
downloadtcpdump-3a34763284ac850d0194a7d4d01a482d5e4aa703.tar.gz
From Paolo Abeni: print some basic Bluetooth information.
Update CREDITS, FILES, and INSTALL appropriately; clean up changes to Makefile.in to keep the file names in order.
Diffstat (limited to 'tcpdump.c')
-rw-r--r--tcpdump.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tcpdump.c b/tcpdump.c
index 8c8b8ddf..061ce448 100644
--- a/tcpdump.c
+++ b/tcpdump.c
@@ -30,7 +30,7 @@ static const char copyright[] _U_ =
"@(#) Copyright (c) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000\n\
The Regents of the University of California. All rights reserved.\n";
static const char rcsid[] _U_ =
- "@(#) $Header: /tcpdump/master/tcpdump/tcpdump.c,v 1.270 2007-09-12 19:36:18 guy Exp $ (LBL)";
+ "@(#) $Header: /tcpdump/master/tcpdump/tcpdump.c,v 1.271 2007-09-24 23:46:27 guy Exp $ (LBL)";
#endif
/*
@@ -269,6 +269,9 @@ static struct printer printers[] = {
#ifdef DLT_MFR
{ mfr_if_print, DLT_MFR },
#endif
+#ifdef DLT_BLUETOOTH_HCI_H4_WITH_PHDR
+ { bt_if_print, DLT_BLUETOOTH_HCI_H4_WITH_PHDR},
+#endif
{ NULL, 0 },
};