sqweek <[EMAIL PROTECTED]> writes:

> -      if (errno != EXDEV)
> +      if (errno != EXDEV && errno != EPERM)

This would cause 'mv' to fail to conform to POSIX.

POSIX says that if the rename fails for any reason other
than EXDEV, 'mv' must write a diagnostic message to stderr
and do nothing more with the source file.  See
<http://www.opengroup.org/susv3/utilities/mv.html>
and look for "EXDEV".


_______________________________________________
Bug-coreutils mailing list
Bug-coreutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to