|
| 1 | +diff -r -C 2 cpio-2.15.orig/src/extern.h cpio-2.15/src/extern.h |
| 2 | +*** cpio-2.15.orig/src/extern.h 2024-01-14 20:42:18.000000000 +0900 |
| 3 | +--- cpio-2.15/src/extern.h 2025-08-12 13:38:13.556032097 +0900 |
| 4 | +*************** |
| 5 | +*** 98,102 **** |
| 6 | + extern char input_is_seekable; |
| 7 | + extern char output_is_seekable; |
| 8 | +! extern int (*xstat) (); |
| 9 | + extern void (*copy_function) (); |
| 10 | + extern char *change_directory_option; |
| 11 | +--- 98,102 ---- |
| 12 | + extern char input_is_seekable; |
| 13 | + extern char output_is_seekable; |
| 14 | +! extern int (*xstat) (const char *pathname, struct stat *statbuf); |
| 15 | + extern void (*copy_function) (); |
| 16 | + extern char *change_directory_option; |
| 17 | +diff -r -C 2 cpio-2.15.orig/src/global.c cpio-2.15/src/global.c |
| 18 | +*** cpio-2.15.orig/src/global.c 2024-01-14 20:42:18.000000000 +0900 |
| 19 | +--- cpio-2.15/src/global.c 2025-08-12 13:38:25.209520528 +0900 |
| 20 | +*************** |
| 21 | +*** 186,190 **** |
| 22 | + /* A pointer to either lstat or stat, depending on whether |
| 23 | + dereferencing of symlinks is done for input files. */ |
| 24 | +! int (*xstat) (); |
| 25 | + |
| 26 | + /* Which copy operation to perform. (-i, -o, -p) */ |
| 27 | +--- 186,190 ---- |
| 28 | + /* A pointer to either lstat or stat, depending on whether |
| 29 | + dereferencing of symlinks is done for input files. */ |
| 30 | +! int (*xstat) (const char *pathname, struct stat *statbuf); |
| 31 | + |
| 32 | + /* Which copy operation to perform. (-i, -o, -p) */ |
0 commit comments