summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2019-02-02 23:51:04 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2019-02-02 23:51:04 +0000
commita5d71f409d861535fae967725714d02883385986 (patch)
tree5eebacd58dae92ba61cd88e5ae949c34d431a801
parentReleasing debian version 0.10-1. (diff)
downloadtarlz-a5d71f409d861535fae967725714d02883385986.tar.xz
tarlz-a5d71f409d861535fae967725714d02883385986.zip
Merging upstream version 0.10a.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rwxr-xr-xconfigure2
-rw-r--r--doc/tarlz.12
-rw-r--r--extended.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index 9d645ba..a7cccfc 100755
--- a/configure
+++ b/configure
@@ -6,7 +6,7 @@
# to copy, distribute and modify it.
pkgname=tarlz
-pkgversion=0.10
+pkgversion=0.10a
progname=tarlz
srctrigger=doc/${pkgname}.texi
diff --git a/doc/tarlz.1 b/doc/tarlz.1
index 9450c57..c30c72f 100644
--- a/doc/tarlz.1
+++ b/doc/tarlz.1
@@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.1.
-.TH TARLZ "1" "January 2019" "tarlz 0.10" "User Commands"
+.TH TARLZ "1" "February 2019" "tarlz 0.10a" "User Commands"
.SH NAME
tarlz \- creates tar archives with multimember lzip compression
.SH SYNOPSIS
diff --git a/extended.cc b/extended.cc
index 7e0cb30..4b9e067 100644
--- a/extended.cc
+++ b/extended.cc
@@ -106,7 +106,7 @@ int Extended::recsize_path() const
int Extended::recsize_file_size() const
{
if( recsize_file_size_ < 0 ) recsize_file_size_ =
- ( file_size_ > 0 ) ? record_size( 4, file_size_ ) : 0;
+ ( file_size_ > 0 ) ? record_size( 4, decimal_digits( file_size_ ) ) : 0;
return recsize_file_size_;
}