aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-11-16 22:08:50 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-11-16 22:08:50 +0000
commit32b71d9b7e9148a393d74613df511b64f3855db6 (patch)
treef95c2f5ac92cc343d7521866883358e2e8d0b408
parent8b24e8d8f0d3da64e4116650c1e07a2937919d11 (diff)
hmmm, buggy bugfix
capture_child isn't initialized already here, so remove the whole error reaction check for now svn path=/trunk/; revision=16517
-rw-r--r--gtk/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/main.c b/gtk/main.c
index 2598a2a51b..2e248035cb 100644
--- a/gtk/main.c
+++ b/gtk/main.c
@@ -1780,8 +1780,8 @@ main(int argc, char *argv[])
case '?': /* argument-parsing error - quit now if we're a normal Ethereal */
/* (a capture child uses a slightly different options pattern, */
/* so don't quit here as this error is only meaningful in the "real" run later) */
- if(!capture_child)
- exit(0);
+ /*if(!capture_child)
+ exit(0);*/
break;
}
}