From b6b9e87a0463031084af9fc062773bb4b07072ab Mon Sep 17 00:00:00 2001 From: hannes Date: Wed, 8 Jun 2005 06:40:10 +0000 Subject: [PATCH] typo: the codepoint for complete source routing in the sr clnp option is 0x1 and not 0x0 --- print-isoclns.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } };