Use col_append_sep_str instead of col_set_str. Fixes another piece of
[metze/wireshark/wip.git] / cfile.c
diff --git a/cfile.c b/cfile.c
index e9f1f08332444bd4176ca4917eb59a4e9db18608..8fe484622c30af4205cb1fb6b7b253d62f33fa60 100644 (file)
--- a/cfile.c
+++ b/cfile.c
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
+#include "config.h"
 
 #include <glib.h>
 
 #include "cfile.h"
 
 void
-init_cap_file(capture_file *cf)
+cap_file_init(capture_file *cf)
 {
   /* Initialize the capture file struct */
-  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->redissecting  = FALSE;
+  memset(cf, 0, sizeof(capture_file));
+  cf->snap            = WTAP_MAX_PACKET_SIZE;
 }
-