From ae1ad9af54210c9a2be336b1316532da5071516c Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Sun, 8 Feb 2009 18:17:05 +0200 Subject: [PATCH] Make "xz --force" to write to terminal as the error message suggests. --- src/xz/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xz/main.c b/src/xz/main.c index b683cf9b..6c21cd2a 100644 --- a/src/xz/main.c +++ b/src/xz/main.c @@ -197,7 +197,7 @@ main(int argc, char **argv) // Refuse to write compressed data to standard output if it is // a terminal and --force wasn't used. - if (opt_mode == MODE_COMPRESS) { + if (opt_mode == MODE_COMPRESS && !opt_force) { if (opt_stdout || (args.arg_count == 1 && strcmp(args.arg_names[0], "-") == 0)) { if (is_tty_stdout()) {