Remove unused 'pstats' member in capture_file

svn path=/trunk/; revision=30048
This commit is contained in:
Kovarththanan Rajaratnam 2009-09-21 18:20:01 +00:00
parent 7ca137e294
commit 8b62ba243b
2 changed files with 2 additions and 3 deletions

View File

@ -54,6 +54,6 @@ init_cap_file(capture_file *cf)
cf->has_snap = FALSE;
cf->snap = WTAP_MAX_PACKET_SIZE;
cf->count = 0;
cf->pstats = NULL;
cf->redissecting = FALSE;
}

View File

@ -92,9 +92,8 @@ typedef struct _capture_file {
gint current_row; /* Row number for current frame */
epan_dissect_t *edt; /* Protocol dissection for currently selected packet */
field_info *finfo_selected; /* Field info for currently selected field */
struct ph_stats_s* pstats; /* accumulated stats (reset on redisplay in GUI)*/
} capture_file;
void init_cap_file(capture_file *);
void init_cap_file(capture_file *cf);
#endif /* cfile.h */