aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/fc_stat.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-11-28 14:00:23 +0000
committerMichael Mann <mmann78@netscape.net>2013-11-28 14:00:23 +0000
commitf74c6454999a93d5f284c97928530a2453fd1361 (patch)
tree7abdec8343319fe8423a84e9c3ed8282d1cd6c21 /ui/gtk/fc_stat.c
parente450b9baae6196731f911ad30863412f8aa3ed3b (diff)
Adjust fc_stat.c to use newer fc_exchange_t structure for its stats.
svn path=/trunk/; revision=53621
Diffstat (limited to 'ui/gtk/fc_stat.c')
-rw-r--r--ui/gtk/fc_stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk/fc_stat.c b/ui/gtk/fc_stat.c
index 45d5443886..e84d7b3cb6 100644
--- a/ui/gtk/fc_stat.c
+++ b/ui/gtk/fc_stat.c
@@ -81,11 +81,11 @@ fcstat_packet(void *pfc, packet_info *pinfo, epan_dissect_t *edt _U_, const void
return 0;
}
/* if we havnt seen the request, just ignore it */
- if( (!fc->itlq) || (fc->itlq->first_exchange_frame==0) ){
+ if ( (!fc->fc_ex) || (fc->fc_ex->first_exchange_frame==0) ){
return 0;
}
- add_srt_table_data(&fs->fc_srt_table, fc->type, &fc->itlq->fc_time, pinfo);
+ add_srt_table_data(&fs->fc_srt_table, fc->type, &fc->fc_ex->fc_time, pinfo);
return 1;
}