aboutsummaryrefslogtreecommitdiff
path: root/src/lzma
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2008-06-10 20:36:12 +0300
committerLasse Collin <lasse.collin@tukaani.org>2008-06-10 20:36:12 +0300
commit436fa5fae96d4e35759aed33066060f09ee8c6ef (patch)
treea9e4f493f850e3548d84790646e4622a6faaf7b2 /src/lzma
parentFix a buffer overflow in the LZMA encoder. It was due to my (diff)
downloadxz-436fa5fae96d4e35759aed33066060f09ee8c6ef.tar.xz
s/decompressed/compressed/ in the command line tool's
error message.
Diffstat (limited to 'src/lzma')
-rw-r--r--src/lzma/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lzma/main.c b/src/lzma/main.c
index 26edc47e..02891193 100644
--- a/src/lzma/main.c
+++ b/src/lzma/main.c
@@ -89,7 +89,7 @@ is_tty_stdout(void)
if (ret) {
errmsg(V_ERROR, _("Compressed data not written to "
"a terminal."));
- errmsg(V_ERROR, _("Use `--force' to force decompression."));
+ errmsg(V_ERROR, _("Use `--force' to force compression."));
show_try_help();
}