wok-next view busybox/stuff/1.26/cpio.u @ rev 19690

Up bwm-ng, startup-notification
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Apr 12 04:05:03 2017 +0300 (2017-04-12)
parents 4c6c19c4bc38
children
line source
1 --- busybox-1.25/archival/cpio.c
2 +++ busybox-1.25/archival/cpio.c
3 @@ -244,6 +244,9 @@
4 if (!(S_ISLNK(st.st_mode) || S_ISREG(st.st_mode)))
5 st.st_size = 0; /* paranoia */
7 + if (S_ISLNK(st.st_mode))
8 + st.st_nlink = 1; /* like GNU cpio */
9 +
10 /* Store hardlinks for later processing, dont output them */
11 if (!S_ISDIR(st.st_mode) && st.st_nlink > 1) {
12 struct name_s *n;