wok diff busybox/stuff/busybox-1.23-cpio.u @ rev 19221

Up pcre (8.39); add pcre2 (10.21).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Jun 18 19:48:35 2016 +0300 (2016-06-18)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/busybox/stuff/busybox-1.23-cpio.u	Sat Jun 18 19:48:35 2016 +0300
     1.3 @@ -0,0 +1,12 @@
     1.4 +--- busybox-1.23.0/archival/cpio.c
     1.5 ++++ busybox-1.23.0/archival/cpio.c
     1.6 +@@ -226,6 +226,9 @@
     1.7 + 			if (!(S_ISLNK(st.st_mode) || S_ISREG(st.st_mode)))
     1.8 + 				st.st_size = 0; /* paranoia */
     1.9 + 
    1.10 ++			if (S_ISLNK(st.st_mode))
    1.11 ++				st.st_nlink = 1; /* like GNU cpio */
    1.12 ++
    1.13 + 			/* Store hardlinks for later processing, dont output them */
    1.14 + 			if (!S_ISDIR(st.st_mode) && st.st_nlink > 1) {
    1.15 + 				struct name_s *n;