int lstat ();
+char *group_member ();
char *savedir ();
char *xmalloc ();
char *xrealloc ();
describe_change (file, 1);
if (chown (file, file_stats.st_uid, group))
{
- if (force_silent == 0)
- error (0, errno, "%s", file);
errors = 1;
+ if (force_silent == 0)
+ {
+ /* Give a more specific message. Some systems set errno
+ to EPERM for both `inaccessible file' and `user not a member
+ of the specified group' errors. */
+ if (errno == EPERM && !group_member (group))
+ {
+ error (0, errno, "you are not a member of group `%s'",
+ groupname);
+ }
+ else
+ {
+ error (0, errno, "%s", file);
+ }
+ }
}
}
else if (verbose && changes_only == 0)
whether dereferencing of symlinks is done. */
static int (*xstat) ();
-/* If nonzero, copy all files except directories and, if not dereferencing
- them, symbolic links, as if they were regular files. */
+/* If nonzero, copy all files except (directories and, if not dereferencing
+ them, symbolic links,) as if they were regular files. */
static int flag_copy_as_regular = 1;
/* If nonzero, dereference symbolic links (copy the files they point to). */
{
if (flag_interactive)
{
- if (eaccess_stat (&dst_sb, W_OK) != 0)
+ if (eaccess_stat (&dst_sb, W_OK, dst_path) != 0)
fprintf (stderr,
"%s: overwrite `%s', overriding mode %04o? ",
program_name, dst_path,
/* If non-root uses -p, it's ok if we can't preserve ownership.
But root probably wants to know, e.g. if NFS disallows it. */
- if (chown (dst_path, src_sb.st_uid, src_sb.st_gid)
+ if (chown (dst_path,
+ (myeuid == 0 ? src_sb.st_uid : myeuid),
+ src_sb.st_gid)
&& (errno != EPERM || myeuid == 0))
{
error (0, errno, "%s", dst_path);
return 0;
if (!override_mode && (interactive || stdin_tty)
- && eaccess_stat (&dest_stats, W_OK))
+ && eaccess_stat (&dest_stats, W_OK, dest))
{
fprintf (stderr, "%s: replace `%s', overriding mode %04o? ",
program_name, dest,
struct stat *statp;
{
if (!ignore_missing_files && (interactive || stdin_tty)
- && eaccess_stat (statp, W_OK)
+ && eaccess_stat (statp, W_OK, pathname)
#ifdef S_ISLNK
&& !S_ISLNK (statp->st_mode)
#endif