Revert rev 32519 for now: it is making the dissector bug a little too obvious. It may make sense to put the check back in once the bug (tracked via 4698) is fixed.

svn path=/trunk/; revision=32620
This commit is contained in:
Jeff Morriss 2010-04-30 22:00:05 +00:00
parent 06a24aaa7e
commit 08045a2392
1 changed files with 3 additions and 1 deletions

View File

@ -5874,7 +5874,9 @@ dissect_rsvp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
break;
default:
/* This should never happen. */
DISSECTOR_ASSERT_NOT_REACHED();
if (tree) {
proto_tree_add_text(tree, tvb, 0, 0, "Unknown session type");
}
break;
}