aboutsummaryrefslogtreecommitdiffstats
path: root/cfile.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-09-24 00:47:37 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2003-09-24 00:47:37 +0000
commit173265a3dd127955641a4d11de563388d20833f6 (patch)
tree1b105507c8863533fc0d3e32a17432f2d41ee531 /cfile.h
parent2b1e00a9f144dfd7795982cc025e5e2620aab79e (diff)
Make "finfo_selected" a member of a "capture_file" structure rather than
an independent global variable. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8524 f5534014-38df-0310-8fa8-9805f1628bb7
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;