From 38a246630f3d595d75f90603e8d577a59a06ea54 Mon Sep 17 00:00:00 2001 From: Bill Meier Date: Mon, 1 Jan 2007 16:58:03 +0000 Subject: [PATCH] From Pierre Juhen: patch to correct the bug 1220 svn path=/trunk/; revision=20254 --- capture_opts.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/capture_opts.c b/capture_opts.c index 49326c5b3d..37db6321df 100644 --- a/capture_opts.c +++ b/capture_opts.c @@ -584,6 +584,8 @@ static gboolean capture_opts_output_to_pipe(const char *save_file, gboolean *is_ { int err; + *is_pipe = FALSE; + if (save_file != NULL) { /* We're writing to a capture file. */ if (strcmp(save_file, "-") == 0) { @@ -594,7 +596,7 @@ static gboolean capture_opts_output_to_pipe(const char *save_file, gboolean *is_ Least Astonishment. */ *is_pipe = TRUE; } else { - /* not a capture file, test for a FIFO (aka named pipe) */ + /* not writing to stdout, test for a FIFO (aka named pipe) */ err = capture_opts_test_for_fifo(save_file); switch (err) { @@ -615,8 +617,6 @@ static gboolean capture_opts_output_to_pipe(const char *save_file, gboolean *is_ } } - *is_pipe = FALSE; - return 0; }