mirror of
https://github.com/neovim/neovim
synced 2025-07-16 01:01:49 +00: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:
@ -795,6 +795,7 @@ void os_copy_xattr(const char *from_file, const char *to_file)
|
|||||||
case E2BIG:
|
case E2BIG:
|
||||||
errmsg = e_xattr_e2big;
|
errmsg = e_xattr_e2big;
|
||||||
goto error_exit;
|
goto error_exit;
|
||||||
|
case ENOTSUP:
|
||||||
case EACCES:
|
case EACCES:
|
||||||
case EPERM:
|
case EPERM:
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user