summaryrefslogtreecommitdiff
path: root/xdelta3/xdelta3-main.h
diff options
context:
space:
mode:
authorjosh.macdonald@gmail.com <josh.macdonald@gmail.com@a3eca27d-f21b-0410-9b4a-6511e771f64e>2010-08-02 02:50:56 +0000
committerjosh.macdonald@gmail.com <josh.macdonald@gmail.com@a3eca27d-f21b-0410-9b4a-6511e771f64e>2010-08-02 02:50:56 +0000
commit0a2d5cd15a92c842dfba6b087b414b413961dc0d (patch)
tree598142279a41a85ca90c252b31e78f576863ef36 /xdelta3/xdelta3-main.h
parent24ff9cf7f34fa7481a71a1ecdcfe1a67d964c2b1 (diff)
change external-compression warning text
Diffstat (limited to 'xdelta3/xdelta3-main.h')
-rw-r--r--xdelta3/xdelta3-main.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/xdelta3/xdelta3-main.h b/xdelta3/xdelta3-main.h
index 64f90da..d2aa4e5 100644
--- a/xdelta3/xdelta3-main.h
+++ b/xdelta3/xdelta3-main.h
@@ -2500,15 +2500,21 @@ main_secondary_decompress_check (main_file *file,
2500 if (file->flags & RD_MAININPUT) 2500 if (file->flags & RD_MAININPUT)
2501 { 2501 {
2502 XPR(NT 2502 XPR(NT
2503 "WARNING: the encoder is automatically decompressing the primary input\n"); 2503 "WARNING: the encoder is automatically decompressing the input file;\n");
2504 XPR(NT 2504 XPR(NT
2505 "WARNING: the decoder will automatically re-compress the primary output\n"); 2505 "WARNING: the decoder will automatically recompress the output file;\n");
2506 XPR(NT 2506 XPR(NT
2507 "WARNING: this may result in different compressed data and checksums\n"); 2507 "WARNING: this may result in different compressed data and checksums\n");
2508 XPR(NT 2508 XPR(NT
2509 "WARNING: despite being identical data; if this is an issue, use -D\n"); 2509 "WARNING: despite being identical data; if this is an issue, use -D\n");
2510 XPR(NT 2510 XPR(NT
2511 "WARNING: to avoid decompression and/or manually decompress the inputs\n"); 2511 "WARNING: to avoid decompression and/or use -R to avoid recompression\n");
2512 XPR(NT
2513 "WARNING: and/or manually decompress the input file; if you know the\n");
2514 XPR(NT
2515 "WARNING: compression settings that will produce identical output\n");
2516 XPR(NT
2517 "WARNING: you may set those flags using the environment (e.g., GZIP=-9)\n");
2512 } 2518 }
2513 } 2519 }
2514 2520