GNU bug report logs -
#13702
24.3.50; dired-do-rename: Mysterious error "(file-error Getting ACL no such file or directory <existing file>)"
Previous Next
Reported by: Carsten Bormann <cabo <at> tzi.org>
Date: Tue, 12 Feb 2013 21:53:02 UTC
Severity: normal
Found in version 24.3.50
Done: Romain Francoise <romain <at> orebokech.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Many other error numbers should be checked for.
Here's what Gnulib's acl-internal.h says on the subject, right now:
/* Recognize some common errors such as from an NFS mount that does
not support ACLs, even when local drives do. */
#if defined __APPLE__ && defined __MACH__ /* Mac OS X */
# define ACL_NOT_WELL_SUPPORTED(Err) \
((Err) == ENOTSUP || (Err) == ENOSYS || (Err) == EINVAL || (Err) == EBUSY || (Err) == ENOENT)
#elif defined EOPNOTSUPP /* Tru64 NFS */
# define ACL_NOT_WELL_SUPPORTED(Err) \
((Err) == ENOTSUP || (Err) == ENOSYS || (Err) == EINVAL || (Err) == EBUSY || (Err) == EOPNOTSUPP)
#else
# define ACL_NOT_WELL_SUPPORTED(Err) \
((Err) == ENOTSUP || (Err) == ENOSYS || (Err) == EINVAL || (Err) == EBUSY)
#endif
Maybe Emacs should steal this macro. Or we can change Gnulib
to publish it and then use the relevant Gnulib module.
This bug report was last modified 12 years and 108 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.