aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rpc.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-rpc.c')
-rw-r--r--epan/dissectors/packet-rpc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/epan/dissectors/packet-rpc.c b/epan/dissectors/packet-rpc.c
index 8f72931e60..c8abc674af 100644
--- a/epan/dissectors/packet-rpc.c
+++ b/epan/dissectors/packet-rpc.c
@@ -3854,7 +3854,7 @@ static stat_tap_table_item rpc_prog_stat_fields[] = {
static void rpc_prog_stat_init(new_stat_tap_ui* new_stat, new_stat_tap_gui_init_cb gui_callback, void* gui_data)
{
int num_fields = sizeof(rpc_prog_stat_fields)/sizeof(stat_tap_table_item);
- new_stat_tap_table* table;
+ stat_tap_table* table;
table = new_stat_tap_init_table("ONC-RPC Program Statistics", num_fields, 0, NULL, gui_callback, gui_data);
new_stat_tap_add_table(new_stat, table);
@@ -3872,10 +3872,10 @@ rpc_prog_stat_packet(void *tapdata, packet_info *pinfo _U_, epan_dissect_t *edt
guint call_count;
guint element;
gboolean found = FALSE;
- new_stat_tap_table* table;
+ stat_tap_table* table;
stat_tap_table_item_type* item_data;
- table = g_array_index(stat_data->new_stat_tap_data->tables, new_stat_tap_table*, 0);
+ table = g_array_index(stat_data->stat_tap_data->tables, stat_tap_table*, 0);
for (element = 0; element < table->num_elements; element++)
{
@@ -3943,7 +3943,7 @@ rpc_prog_stat_packet(void *tapdata, packet_info *pinfo _U_, epan_dissect_t *edt
}
static void
-rpc_prog_stat_reset(new_stat_tap_table* table)
+rpc_prog_stat_reset(stat_tap_table* table)
{
guint element;
stat_tap_table_item_type* item_data;
@@ -3966,7 +3966,7 @@ rpc_prog_stat_reset(new_stat_tap_table* table)
}
static void
-rpc_prog_stat_free_table_item(new_stat_tap_table* table _U_, guint row _U_, guint column, stat_tap_table_item_type* field_data)
+rpc_prog_stat_free_table_item(stat_tap_table* table _U_, guint row _U_, guint column, stat_tap_table_item_type* field_data)
{
if (column != PROGRAM_NAME_COLUMN) return;
g_free((char*)field_data->value.string_value);