Rename capture_file.plist to capture_file.plist_start to make it consistent with...
[metze/wireshark/wip.git] / cfile.c
diff --git a/cfile.c b/cfile.c
index 62fab27fbb44b27d3d3be34d971a433680290367..b198fde9d858de8361bca4453006f9cf51eb6324 100644 (file)
--- 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;
 }