mirror of
https://github.com/neovim/neovim.git
synced 2024-12-23 12:45:17 -07:00
fix: missing case in setxattr error handling (#26176)
ENOTSUP case is present in vim, but doesn't appear to have included here.
This commit is contained in:
parent
32a4c9f4f9
commit
4ce3159e24
@ -795,6 +795,7 @@ void os_copy_xattr(const char *from_file, const char *to_file)
|
||||
case E2BIG:
|
||||
errmsg = e_xattr_e2big;
|
||||
goto error_exit;
|
||||
case ENOTSUP:
|
||||
case EACCES:
|
||||
case EPERM:
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user