1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-04 06:38:28 +02:00

Fixed: Failing file copy when running in docker on synology with btrfs

This commit is contained in:
Taloth Saldono 2020-06-22 15:41:53 +02:00
parent 903aba5dee
commit 25b763a052

View File

@ -20,7 +20,7 @@ internal static class NativeMethods
public static SafeUnixHandle open(string pathname, OpenFlags flags)
{
return new SafeUnixHandle(Syscall.open(pathname, flags));
return new SafeUnixHandle(Syscall.open(pathname, flags, FilePermissions.DEFFILEMODE));
}
internal static int clone_file(SafeUnixHandle link_fd, SafeUnixHandle src_fd)