diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2002-02-28 19:35:09 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2002-02-28 19:35:09 +0000 |
commit | d96747f550f9131bfc27c1af0970c604fffcf998 (patch) | |
tree | 79c25e8013fbb1687c69a0dfd71c27953d5752d9 /tethereal.c | |
parent | 12832ed6dfe4345e0840fd523060b422312ea460 (diff) | |
download | wireshark-d96747f550f9131bfc27c1af0970c604fffcf998.tar.gz wireshark-d96747f550f9131bfc27c1af0970c604fffcf998.tar.bz2 wireshark-d96747f550f9131bfc27c1af0970c604fffcf998.zip |
In follow.c, initialize data_out_file to NULL, as it used to
be initialized in gtk/follow_dlg.c
In gtk/follow_dlg.c, declare data_out_file as 'extern'.
In tethereal.c, no longer define 'data_out_file', as the storage
for it is now in follow.c.
svn path=/trunk/; revision=4830
Diffstat (limited to 'tethereal.c')
-rw-r--r-- | tethereal.c | 3 |
1 files changed, 1 insertions, 2 deletions
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 { |