mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-11-16 09:17:11 +00:00
Merge pull request #943 from gaul/hard-link
Return not supported when hard linking
This commit is contained in:
commit
ae51556d04
@ -1550,7 +1550,7 @@ static int s3fs_rename(const char* from, const char* to)
|
||||
static int s3fs_link(const char* from, const char* to)
|
||||
{
|
||||
S3FS_PRN_INFO("[from=%s][to=%s]", from, to);
|
||||
return -EPERM;
|
||||
return -ENOTSUP;
|
||||
}
|
||||
|
||||
static int s3fs_chmod(const char* path, mode_t mode)
|
||||
|
Loading…
Reference in New Issue
Block a user