aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sigcomp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-10-08 16:42:27 +0000
committerGuy Harris <guy@alum.mit.edu>2004-10-08 16:42:27 +0000
commit8ceddc4a1d6f8bfbf8ca66839c9c32af769440d5 (patch)
tree18637bc491ef63c78fbf124aff8eabe57303bd74 /epan/dissectors/packet-sigcomp.c
parent50cae903edd5345aa3b669b11acd5bbd7eab358b (diff)
"dissect_sigcomp()" returns 0 or the packet length, so it has to be
registered with "new_register_dissector()". svn path=/trunk/; revision=12239
Diffstat (limited to 'epan/dissectors/packet-sigcomp.c')
-rw-r--r--epan/dissectors/packet-sigcomp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-sigcomp.c b/epan/dissectors/packet-sigcomp.c
index 5dee463b76..500eb437cf 100644
--- a/epan/dissectors/packet-sigcomp.c
+++ b/epan/dissectors/packet-sigcomp.c
@@ -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));