aboutsummaryrefslogtreecommitdiffstats
path: root/cfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'cfile.c')
-rw-r--r--cfile.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/cfile.c b/cfile.c
index 3463c1d538..e3e5cb2c35 100644
--- a/cfile.c
+++ b/cfile.c
@@ -37,16 +37,16 @@ void
cap_file_init(capture_file *cf)
{
/* Initialize the capture file struct */
- cf->filename = NULL;
- cf->source = NULL;
- cf->is_tempfile = FALSE;
- cf->user_saved = FALSE;
- cf->count = 0;
- cf->has_snap = FALSE;
- cf->snap = WTAP_MAX_PACKET_SIZE;
- cf->wth = NULL;
- cf->rfcode = NULL;
- cf->dfilter = NULL;
- cf->redissecting = FALSE;
- cf->frames = NULL;
+ cf->filename = NULL;
+ cf->source = NULL;
+ cf->is_tempfile = FALSE;
+ cf->unsaved_changes = FALSE;
+ cf->count = 0;
+ cf->has_snap = FALSE;
+ cf->snap = WTAP_MAX_PACKET_SIZE;
+ cf->wth = NULL;
+ cf->rfcode = NULL;
+ cf->dfilter = NULL;
+ cf->redissecting = FALSE;
+ cf->frames = NULL;
}