aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--follow.c4
-rw-r--r--gtk/follow_dlg.c4
-rw-r--r--tethereal.c3
3 files changed, 5 insertions, 6 deletions
diff --git a/follow.c b/follow.c
index f4911b4575..c3b5ad0f3f 100644
--- a/follow.c
+++ b/follow.c
@@ -1,6 +1,6 @@
/* follow.c
*
- * $Id: follow.c,v 1.28 2002/01/21 07:36:31 guy Exp $
+ * $Id: follow.c,v 1.29 2002/02/28 19:35:08 gram Exp $
*
* Copyright 1998 Mike Hall <mlh@io.com>
*
@@ -43,7 +43,7 @@
#include <epan/packet.h>
#include "follow.h"
-FILE* data_out_file;
+FILE* data_out_file = NULL;
gboolean incomplete_tcp_stream = FALSE;
diff --git a/gtk/follow_dlg.c b/gtk/follow_dlg.c
index 65751ee27f..29c6df3b96 100644
--- a/gtk/follow_dlg.c
+++ b/gtk/follow_dlg.c
@@ -1,6 +1,6 @@
/* follow_dlg.c
*
- * $Id: follow_dlg.c,v 1.20 2002/01/21 07:37:41 guy Exp $
+ * $Id: follow_dlg.c,v 1.21 2002/02/28 19:35:09 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -111,7 +111,7 @@ static void follow_stream_om_client(GtkWidget * w, gpointer data);
static void follow_stream_om_server(GtkWidget * w, gpointer data);
-FILE *data_out_file = NULL;
+extern FILE *data_out_file;
#define E_FOLLOW_INFO_KEY "follow_info_key"
diff --git a/tethereal.c b/tethereal.c
index 1072317459..1c5639ec41 100644
--- a/tethereal.c
+++ b/tethereal.c
@@ -1,6 +1,6 @@
/* tethereal.c
*
- * $Id: tethereal.c,v 1.128 2002/02/27 08:57:14 guy Exp $
+ * $Id: tethereal.c,v 1.129 2002/02/28 19:35:08 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -150,7 +150,6 @@ static void wtap_dispatch_cb_print(u_char *, const struct wtap_pkthdr *, long,
union wtap_pseudo_header *, const u_char *);
capture_file cfile;
-FILE *data_out_file = NULL;
ts_type timestamp_type = RELATIVE;
#ifdef HAVE_LIBPCAP
typedef struct {