mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 03:38:26 -07:00
Fixed: Failing file copy when running in docker on synology with btrfs
Co-Authored-By: Taloth <Taloth@users.noreply.github.com>
This commit is contained in:
parent
c92b254bb7
commit
5a15565d2b
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ namespace NzbDrone.Mono.Interop
|
||||||
|
|
||||||
public static SafeUnixHandle open(string pathname, OpenFlags flags)
|
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)
|
internal static int clone_file(SafeUnixHandle link_fd, SafeUnixHandle src_fd)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue