aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-02-28 21:55:13 +0000
committerGuy Harris <guy@alum.mit.edu>2004-02-28 21:55:13 +0000
commitd9a9be352cfdd515d58675cc9e65ab1adcf1c28b (patch)
tree29fa9793fae73e5f964f8f726115750e136d843e
parent7b7c0c23613007fb150f03dd4b15d7f0ed2a1c24 (diff)
Default to not using the ring buffer (as the default number of files is
1 file, i.e. the simple "just keep capturing until told to stop" mode, you can't use a ring buffer). svn path=/trunk/; revision=10259
-rw-r--r--gtk/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/main.c b/gtk/main.c
index 824bcd7480..7399e5da1a 100644
--- a/gtk/main.c
+++ b/gtk/main.c
@@ -1,6 +1,6 @@
/* main.c
*
- * $Id: main.c,v 1.409 2004/02/28 16:21:11 ulfl Exp $
+ * $Id: main.c,v 1.410 2004/02/28 21:55:13 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -2021,7 +2021,7 @@ main(int argc, char *argv[])
capture_opts.autostop_duration = 1;
capture_opts.has_autostop_filesize = FALSE;
capture_opts.autostop_filesize = 1;
- capture_opts.ringbuffer_on = TRUE;
+ capture_opts.ringbuffer_on = FALSE;
capture_opts.num_files = 1;
capture_opts.has_ring_duration = FALSE;
capture_opts.ringbuffer_duration = 1;