diff options
Diffstat (limited to 'contrib/tcpdump/oui.c')
-rw-r--r-- | contrib/tcpdump/oui.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/tcpdump/oui.c b/contrib/tcpdump/oui.c index e6569d4..422cd16 100644 --- a/contrib/tcpdump/oui.c +++ b/contrib/tcpdump/oui.c @@ -15,7 +15,7 @@ #ifndef lint static const char rcsid[] _U_ = - "@(#) $Header: /tcpdump/master/tcpdump/oui.c,v 1.8.2.1 2008-01-09 09:44:39 hannes Exp $ (LBL)"; + "@(#) $Header: /tcpdump/master/tcpdump/oui.c,v 1.9 2008-01-09 09:40:47 hannes Exp $ (LBL)"; #endif #ifdef HAVE_CONFIG_H @@ -28,7 +28,7 @@ static const char rcsid[] _U_ = /* FIXME complete OUI list using a script */ -struct tok oui_values[] = { +const struct tok oui_values[] = { { OUI_ENCAP_ETHER, "Ethernet" }, { OUI_CISCO, "Cisco" }, { OUI_NORTEL, "Nortel Networks SONMP" }, @@ -55,7 +55,7 @@ struct tok oui_values[] = { * * List taken from Ethereal's epan/sminmpec.c. */ -struct tok smi_values[] = { +const struct tok smi_values[] = { { SMI_IETF, "IETF (reserved)"}, { SMI_ACC, "ACC"}, { SMI_CISCO, "Cisco"}, |