aboutsummaryrefslogtreecommitdiffstats
path: root/cfile.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-09-24 00:47:37 +0000
committerGuy Harris <guy@alum.mit.edu>2003-09-24 00:47:37 +0000
commitdd628e00c742885fc3b212e00942880f81956bf0 (patch)
tree1b105507c8863533fc0d3e32a17432f2d41ee531 /cfile.h
parent88b1bc3fac6266419eb2b75997cf32ccc8d8da92 (diff)
Make "finfo_selected" a member of a "capture_file" structure rather than
an independent global variable. svn path=/trunk/; revision=8524
Diffstat (limited to 'cfile.h')
-rw-r--r--cfile.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/cfile.h b/cfile.h
index d12a2bd1f4..040b1fda59 100644
--- a/cfile.h
+++ b/cfile.h
@@ -1,7 +1,7 @@
/* cfile.h
* capture_file definition & GUI-independent manipulation
*
- * $Id: cfile.h,v 1.5 2003/09/15 22:16:07 guy Exp $
+ * $Id: cfile.h,v 1.6 2003/09/24 00:47:36 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -89,6 +89,7 @@ typedef struct _capture_file {
column_info cinfo; /* Column formatting information */
frame_data *current_frame; /* Frame data for current frame */
epan_dissect_t *edt; /* Protocol dissection for currently selected packet */
+ field_info *finfo_selected; /* Field info for currently selected field */
FILE *print_fh; /* File we're printing to */
struct ph_stats_s* pstats; /* accumulated stats (reset on redisplay in GUI)*/
} capture_file;