typo: the codepoint for complete source routing in the sr clnp option is 0x1 and not 0x0

This commit is contained in:
hannes 2005-06-08 06:40:10 +00:00
parent 9ebb84d5b7
commit b6b9e87a04

View File

@ -26,7 +26,7 @@
#ifndef lint
static const char rcsid[] _U_ =
"@(#) $Header: /tcpdump/master/tcpdump/print-isoclns.c,v 1.141 2005-05-25 22:06:24 guy Exp $ (LBL)";
"@(#) $Header: /tcpdump/master/tcpdump/print-isoclns.c,v 1.142 2005-06-08 06:40:10 hannes Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
@ -309,7 +309,7 @@ static struct tok clnp_option_scope_values[] = {
static struct tok clnp_option_sr_rr_values[] = {
{ 0x0, "partial"},
{ 0x0, "complete"},
{ 0x1, "complete"},
{ 0, NULL }
};