"dissect_cmp_http()" doesn't check for a valid packet (it doesn't need

to, it's selected by the media-type string, not something unreliable
such as a port number), and doesn't return anything, so give it the
right type and don't declare it as a "new-style" dissector.

svn path=/trunk/; revision=16387
This commit is contained in:
Guy Harris 2005-11-03 04:35:39 +00:00
parent 81b9490d4c
commit 2447b390d2
1 changed files with 2 additions and 2 deletions

View File

@ -1466,7 +1466,7 @@ dissect_cmp_tcp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
return tvb_length(tvb);
}
static int
static void
dissect_cmp_http(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
{
proto_item *item=NULL;
@ -2028,7 +2028,7 @@ void proto_reg_handoff_cmp(void) {
dissector_handle_t cmp_http_handle;
dissector_handle_t cmp_tcp_handle;
cmp_http_handle = new_create_dissector_handle(dissect_cmp_http, proto_cmp);
cmp_http_handle = create_dissector_handle(dissect_cmp_http, proto_cmp);
dissector_add_string("media_type", "application/pkixcmp", cmp_http_handle);
cmp_tcp_handle = new_create_dissector_handle(dissect_cmp_tcp, proto_cmp);