rbm: fix no previous prototype.

Change-Id: If2af62e7284b53acd6a3258f1d60ee547f887b5f
Reviewed-on: https://code.wireshark.org/review/28323
Petri-Dish: Dario Lombardo <lomato@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Dario Lombardo 2018-06-18 14:40:12 +02:00 committed by Anders Broman
parent 654ab0d96b
commit 7fca68fb7c
1 changed files with 4 additions and 1 deletions

View File

@ -74,11 +74,14 @@ static const value_string rbm_types[] = {
{0, NULL}
};
void proto_register_rbm(void);
void proto_reg_handoff_rbm(void);
#define BETWEEN(v, b1, b2) (((v) >= (b1)) && ((v) <= (b2)))
static void dissect_rbm_object(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, gint* offset, gchar** type, gchar** value);
void rbm_set_info(packet_info* pinfo, const gchar* str)
static void rbm_set_info(packet_info* pinfo, const gchar* str)
{
const gchar* col_str = col_get_text(pinfo->cinfo, COL_INFO);
if (!col_str || !strlen(col_str))