summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-02-06 12:21:27 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-02-06 12:21:27 +0000
commitba04a65a6a2945d9394b4d2a5339a1c958d43c46 (patch)
tree800f35c9c6d7c4b41ef9acd996c88f14becbadb7 /gtk
parent97866a968b4c5bc273e986775cdc9cefe52c281f (diff)
downloadwireshark-ba04a65a6a2945d9394b4d2a5339a1c958d43c46.tar.gz
fix bugs regarding the capture child
svn path=/trunk/; revision=13316
Diffstat (limited to 'gtk')
-rw-r--r--gtk/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/main.c b/gtk/main.c
index 08173592d2..bb3c8ec5f6 100644
--- a/gtk/main.c
+++ b/gtk/main.c
@@ -1581,8 +1581,8 @@ main(int argc, char *argv[])
Otherwise, set promiscuous mode from the preferences setting. */
/* the same applies to other preferences settings as well. */
- if (!capture_opts->capture_child) {
- auto_scroll_live = FALSE;
+ if (capture_opts->capture_child) {
+ auto_scroll_live = FALSE;
} else {
capture_opts->promisc_mode = prefs->capture_prom_mode;
capture_opts->show_info = prefs->capture_show_info;