From 162d87a516782fb04df22471305df0a386a3d996 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Mayer?= Date: Thu, 17 Aug 2006 11:56:35 +0000 Subject: Muthu Krishnan V As per RFC 4090, In the FAST_REROUTE Object, Include-any starts at the 12th byte and Exclude-any starts at the 16th byte. Ethereal has inter-changed these two fields in its display. *Ethereal* bug 1043. svn path=/trunk/; revision=18938 --- epan/dissectors/packet-rsvp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'epan') diff --git a/epan/dissectors/packet-rsvp.c b/epan/dissectors/packet-rsvp.c index 8e1117b0a7..4aad029523 100644 --- a/epan/dissectors/packet-rsvp.c +++ b/epan/dissectors/packet-rsvp.c @@ -4674,9 +4674,9 @@ dissect_rsvp_fast_reroute (proto_tree *ti, proto_tree *rsvp_object_tree, proto_tree_add_text(rsvp_object_tree, tvb, offset+8, 4, "Bandwidth: %.10g", tvb_get_ntohieee_float(tvb, offset+8)); proto_tree_add_text(rsvp_object_tree, tvb, offset+12, 4, - "Exclude-Any: 0x%0x", tvb_get_ntohl(tvb, offset+12)); + "Include-Any: 0x%0x", tvb_get_ntohl(tvb, offset+12)); proto_tree_add_text(rsvp_object_tree, tvb, offset+16, 4, - "Include-Any: 0x%0x", tvb_get_ntohl(tvb, offset+16)); + "Exclude-Any: 0x%0x", tvb_get_ntohl(tvb, offset+16)); if (type==1) { proto_tree_add_text(rsvp_object_tree, tvb, offset+20, 4, "Include-All: 0x%0x", tvb_get_ntohl(tvb, offset+20)); -- cgit v1.2.1