aboutsummaryrefslogtreecommitdiffstats
path: root/tshark.c
diff options
context:
space:
mode:
Diffstat (limited to 'tshark.c')
-rw-r--r--tshark.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tshark.c b/tshark.c
index f7055c5aee..9dee6a9933 100644
--- a/tshark.c
+++ b/tshark.c
@@ -3115,11 +3115,11 @@ process_cap_file(capture_file *cf, char *save_file, int out_file_type,
tshark_debug("tshark: writing format type %d, to %s", out_file_type, save_file);
if (strcmp(save_file, "-") == 0) {
/* Write to the standard output. */
- pdh = wtap_dump_open_stdout(out_file_type, FALSE /* compressed */,
- &params, &err);
+ pdh = wtap_dump_open_stdout(out_file_type, WTAP_UNCOMPRESSED, &params,
+ &err);
} else {
- pdh = wtap_dump_open(save_file, out_file_type, FALSE /* compressed */,
- &params, &err);
+ pdh = wtap_dump_open(save_file, out_file_type, WTAP_UNCOMPRESSED, &params,
+ &err);
}
g_free(params.idb_inf);