aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS4
-rw-r--r--configure.ac6
-rw-r--r--doc/.gitignore2
m---------gnulib0
-rw-r--r--gnulib.modules1
-rw-r--r--src/copyin.c5
6 files changed, 10 insertions, 8 deletions
diff --git a/NEWS b/NEWS
index 6d9ef05..3d53234 100644
--- a/NEWS
+++ b/NEWS
@@ -1,10 +1,12 @@
1GNU cpio NEWS -- history of user-visible changes. 2019-11-06 1GNU cpio NEWS -- history of user-visible changes. 2021-01-08
2Copyright (C) 2003-2007, 2009-2010, 2014-2015, 2017, 2020-2021 Free 2Copyright (C) 2003-2007, 2009-2010, 2014-2015, 2017, 2020-2021 Free
3Software Foundation, Inc. 3Software Foundation, Inc.
4See the end of file for copying conditions. 4See the end of file for copying conditions.
5 5
6Please send cpio bug reports to <bug-cpio@gnu.org>. 6Please send cpio bug reports to <bug-cpio@gnu.org>.
7 7
8Version 2.13.90 (git)
9
8Version 2.13 - Sergey Poznyakoff, 2019-11-06 10Version 2.13 - Sergey Poznyakoff, 2019-11-06
9 11
10* Fix CVE-2015-1197 12* Fix CVE-2015-1197
diff --git a/configure.ac b/configure.ac
index bdf37e8..0a35e4c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,13 +15,13 @@ dnl
15dnl You should have received a copy of the GNU General Public License 15dnl You should have received a copy of the GNU General Public License
16dnl along with this program. If not, see <http://www.gnu.org/licenses/>. 16dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
17 17
18AC_INIT([GNU cpio], [2.13], [bug-cpio@gnu.org],, 18AC_INIT([GNU cpio], [2.13.90], [bug-cpio@gnu.org],,
19 [http://www.gnu.org/software/cpio]) 19 [http://www.gnu.org/software/cpio])
20AC_CONFIG_SRCDIR(src/cpio.h) 20AC_CONFIG_SRCDIR(src/cpio.h)
21AC_CONFIG_AUX_DIR([build-aux]) 21AC_CONFIG_AUX_DIR([build-aux])
22AC_CONFIG_HEADERS([config.h]) 22AC_CONFIG_HEADERS([config.h])
23AC_PREREQ([2.63]) 23AC_PREREQ([2.64])
24AM_INIT_AUTOMAKE([1.11.1 gnits tar-ustar dist-bzip2 std-options silent-rules]) 24AM_INIT_AUTOMAKE([1.15 gnits tar-ustar dist-bzip2 std-options silent-rules])
25 25
26# Enable silent rules by default: 26# Enable silent rules by default:
27AM_SILENT_RULES([yes]) 27AM_SILENT_RULES([yes])
diff --git a/doc/.gitignore b/doc/.gitignore
index 9c9eece..cf3a127 100644
--- a/doc/.gitignore
+++ b/doc/.gitignore
@@ -21,7 +21,7 @@ cpio.vr
21genfile.texi 21genfile.texi
22getdate.texi 22getdate.texi
23manual 23manual
24parse-datetime.texi
25rmt.8 24rmt.8
26stamp-vti 25stamp-vti
27version.texi 26version.texi
27/parse-datetime.texi
diff --git a/gnulib b/gnulib
Subproject e210a3cbaec0ee82a67ff8fc427e21bdd64dba1 Subproject bdae9a5d4b2cedfaef23f8c55982ba5432dd69e
diff --git a/gnulib.modules b/gnulib.modules
index f165870..1181bcd 100644
--- a/gnulib.modules
+++ b/gnulib.modules
@@ -11,7 +11,6 @@ fileblocks
11fnmatch-gnu 11fnmatch-gnu
12full-write 12full-write
13getline 13getline
14getopt
15gettext-h 14gettext-h
16gitlog-to-changelog 15gitlog-to-changelog
17hash 16hash
diff --git a/src/copyin.c b/src/copyin.c
index 9217a63..c8ea278 100644
--- a/src/copyin.c
+++ b/src/copyin.c
@@ -758,8 +758,9 @@ long_format (struct cpio_file_stat *file_hdr, char const *link_name)
758 758
759 if ((file_hdr->c_mode & CP_IFMT) == CP_IFCHR 759 if ((file_hdr->c_mode & CP_IFMT) == CP_IFCHR
760 || (file_hdr->c_mode & CP_IFMT) == CP_IFBLK) 760 || (file_hdr->c_mode & CP_IFMT) == CP_IFBLK)
761 printf ("%3lu, %3lu ", file_hdr->c_rdev_maj, 761 printf ("%3lu, %3lu ",
762 file_hdr->c_rdev_min); 762 (unsigned long) file_hdr->c_rdev_maj,
763 (unsigned long) file_hdr->c_rdev_min);
763 else 764 else
764 printf ("%8"PRIuMAX" ", (uintmax_t) file_hdr->c_filesize); 765 printf ("%8"PRIuMAX" ", (uintmax_t) file_hdr->c_filesize);
765 766

Return to:

Send suggestions and report system problems to the System administrator.