aboutsummaryrefslogtreecommitdiffstats
path: root/cfile.c
diff options
context:
space:
mode:
authorkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-09-21 18:09:19 +0000
committerkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-09-21 18:09:19 +0000
commitb899f1b5de1e6d2a55a56705f20068a3793c0ed3 (patch)
tree18b1063186b52f672093c9d3de83af1ec2ff8a2c /cfile.c
parent456a541d5aea86a0a0dc4f8db1403b3600177a8b (diff)
Rename capture_file.plist to capture_file.plist_start to make it consistent with capture_file.plist_end
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30047 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'cfile.c')
-rw-r--r--cfile.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/cfile.c b/cfile.c
index 62fab27fbb..b198fde9d8 100644
--- a/cfile.c
+++ b/cfile.c
@@ -1,5 +1,5 @@
/* cfile.c
- * capture_file GUI-independent manipulation
+ * capture_file GUI-independent manipulation
* Vassilii Khachaturov <vassilii@tarunz.org>
*
* $Id$
@@ -43,17 +43,17 @@ void
init_cap_file(capture_file *cf)
{
/* Initialize the capture file struct */
- cf->plist = NULL;
- cf->plist_end = NULL;
- cf->wth = NULL;
- cf->filename = NULL;
- cf->user_saved = FALSE;
- cf->is_tempfile = FALSE;
- cf->rfcode = NULL;
- cf->dfilter = NULL;
- cf->has_snap = FALSE;
- cf->snap = WTAP_MAX_PACKET_SIZE;
- cf->count = 0;
- cf->pstats = NULL;
- cf->redissecting = FALSE;
+ cf->plist_start = NULL;
+ cf->plist_end = NULL;
+ cf->wth = NULL;
+ cf->filename = NULL;
+ cf->user_saved = FALSE;
+ cf->is_tempfile = FALSE;
+ cf->rfcode = NULL;
+ cf->dfilter = NULL;
+ cf->has_snap = FALSE;
+ cf->snap = WTAP_MAX_PACKET_SIZE;
+ cf->count = 0;
+ cf->pstats = NULL;
+ cf->redissecting = FALSE;
}