wok-6.x view busybox/stuff/busybox-1.23-cpio.u @ rev 17707
Up marlin: edit last patch (again)
author | Yuri Pourre <yuripourre@gmail.com> |
---|---|
date | Mon Mar 02 11:31:13 2015 -0300 (2015-03-02) |
parents | |
children |
line source
1 --- busybox-1.23.0/archival/cpio.c
2 +++ busybox-1.23.0/archival/cpio.c
3 @@ -226,6 +226,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;