"dissect_sigcomp()" returns 0 or the packet length, so it has to be

registered with "new_register_dissector()".

svn path=/trunk/; revision=12239
This commit is contained in:
Guy Harris 2004-10-08 16:42:27 +00:00
parent 50cae903ed
commit 8ceddc4a1d
1 changed files with 1 additions and 1 deletions

View File

@ -2100,7 +2100,7 @@ proto_register_sigcomp(void)
proto_raw_sigcomp = proto_register_protocol("Decompressed SigComp message as raw text",
"Raw_SigComp", "raw_sigcomp");
register_dissector("sigcomp", dissect_sigcomp, proto_sigcomp);
new_register_dissector("sigcomp", dissect_sigcomp, proto_sigcomp);
/* Required function calls to register the header fields and subtrees used */
proto_register_field_array(proto_sigcomp, hf, array_length(hf));