Fix a typo.

svn path=/trunk/; revision=16074
This commit is contained in:
Anders Broman 2005-10-03 05:59:17 +00:00
parent 15a08ae521
commit 96c01ad3c6
1 changed files with 2 additions and 2 deletions

View File

@ -471,9 +471,9 @@ dissect_sigcomp_tcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
* is cleaned up.
*/
tvb_set_child_real_data_tvbuff( tvb, unescaped_tvb );
add_new_data_source(pinfo, unescaped_tvb, "Unescaped Data handed to the SigComp dessector");
add_new_data_source(pinfo, unescaped_tvb, "Unescaped Data handed to the SigComp dissector");
proto_tree_add_text(sigcomp_tree, unescaped_tvb, 0, -1,"Data handed to the Sigcomp dessector");
proto_tree_add_text(sigcomp_tree, unescaped_tvb, 0, -1,"Data handed to the Sigcomp dissector");
return dissect_sigcomp_common(unescaped_tvb, pinfo, sigcomp_tree);
}