diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 15:40:23 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 15:40:23 +0000 |
commit | 042db76f3df9f7cfdaedc018e87ee4a5210654bd (patch) | |
tree | e1bfdfc1e7765a928c3a724de7b3db2c5fb0f98c /main.cc | |
parent | Adding debian version 1.3~pre1-1. (diff) | |
download | plzip-042db76f3df9f7cfdaedc018e87ee4a5210654bd.tar.xz plzip-042db76f3df9f7cfdaedc018e87ee4a5210654bd.zip |
Merging upstream version 1.3.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to '')
-rw-r--r-- | main.cc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ /* Plzip - Parallel compressor compatible with lzip Copyright (C) 2009 Laszlo Ersek. - Copyright (C) 2009-2014 Antonio Diaz Diaz. + Copyright (C) 2009-2015 Antonio Diaz Diaz. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -72,7 +72,7 @@ namespace { const char * const Program_name = "Plzip"; const char * const program_name = "plzip"; -const char * const program_year = "2014"; +const char * const program_year = "2015"; const char * invocation_name = 0; struct { const char * from; const char * to; } const known_extensions[] = { @@ -119,7 +119,7 @@ void show_help( const long num_online ) " -1 .. -9 set compression level [default 6]\n" " --fast alias for -1\n" " --best alias for -9\n", num_online ); - if( verbosity > 0 ) + if( verbosity >= 1 ) { std::printf( " -D, --debug=<level> (0-1) print debug statistics to stderr\n" ); } |