Closed lducazu closed 6 years ago
This addresses issue #88 (https://github.com/systemd/casync/issues/88) "extracting char devices: Failed to run synchronizer: Operation not supported".
When extracting character or block devices, fchmodat() is called with flag AT_SYMLINK_NOFOLLOW. According to the documentation (man page), this is not supported and hence returns ENOTSUP. The only supported flag is 0.
This addresses issue #88 (https://github.com/systemd/casync/issues/88) "extracting char devices: Failed to run synchronizer: Operation not supported".
When extracting character or block devices, fchmodat() is called with flag AT_SYMLINK_NOFOLLOW. According to the documentation (man page), this is not supported and hence returns ENOTSUP. The only supported flag is 0.