From Morro Roberto:

Please find attached a patch to the RSVP dissector that fixes a small inaccuracy when printing the SENDER TSPEC object.
Substantially, it changes the string
"C-type: 1 - Integrated Services" into the correct one
"C-type: 2 - Integrated Services"

svn path=/trunk/; revision=20900
This commit is contained in:
Jaap Keuter 2007-02-23 15:22:24 +00:00
parent 4098c5e357
commit 1d60ad8ce7
1 changed files with 1 additions and 1 deletions

View File

@ -2439,7 +2439,7 @@ dissect_rsvp_tspec (proto_item *ti, proto_tree *rsvp_object_tree,
switch(type) {
case 2:
proto_tree_add_text(rsvp_object_tree, tvb, offset+3, 1,
"C-type: 1 - Integrated Services");
"C-type: 2 - Integrated Services");
proto_tree_add_text(rsvp_object_tree, tvb, offset2, 1,
"Message format version: %u",
tvb_get_guint8(tvb, offset2)>>4);