From Pierre Juhen: patch to correct the bug 1220

svn path=/trunk/; revision=20254
This commit is contained in:
Bill Meier 2007-01-01 16:58:03 +00:00
parent 224a21ecfe
commit 38a246630f
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}