aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--capture_opts.c6
1 files 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;
}