From: hannes Date: Wed, 8 Jun 2005 06:40:10 +0000 (+0000) Subject: typo: the codepoint for complete source routing in the sr clnp option is 0x1 and... X-Git-Tag: tcpdump-4.0.0~393 X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/b6b9e87a0463031084af9fc062773bb4b07072ab typo: the codepoint for complete source routing in the sr clnp option is 0x1 and not 0x0 --- diff --git a/print-isoclns.c b/print-isoclns.c index 3ab49b4b..ae461394 100644 --- a/print-isoclns.c +++ b/print-isoclns.c @@ -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 } };