return ! (top->unremovable && hash_lookup (top->unremovable, file));
}
-/* Return -1 if FILE is an unwritable non-symlink,
+/* Return 1 if FILE is an unwritable non-symlink,
0 if it is writable or some other type of file,
- a positive error number if there is some problem in determining the answer.
+ -1 and set errno if there is some problem in determining the answer.
Set *BUF to the file status.
This is to avoid calling euidaccess when FILE is a symlink. */
static int
if (can_write_any_file ())
return 0;
if (cache_fstatat (fd_cwd, file, buf, AT_SYMLINK_NOFOLLOW) != 0)
- return errno;
+ return -1;
if (S_ISLNK (buf->st_mode))
return 0;
/* Here, we know FILE is not a symbolic link. */
= obstack_object_size (&ds->dir_stack) + strlen (file);
if (MIN (PATH_MAX, 8192) <= file_name_len)
- return euidaccess_stat (buf, W_OK) ? 0 : -1;
+ return ! euidaccess_stat (buf, W_OK);
if (euidaccess (xfull_filename (ds, file), W_OK) == 0)
return 0;
if (errno == EACCES)
- return -1;
+ {
+ errno = 0;
+ return 1;
+ }
/* Perhaps some other process has removed the file, or perhaps this
is a buggy NFS client. */
- return errno;
+ return -1;
}
}
if (x->interactive == RMI_NEVER)
return RM_OK;
+ int wp_errno = 0;
+
if (!x->ignore_missing_files
&& ((x->interactive == RMI_ALWAYS) || x->stdin_tty)
&& dirent_type != DT_LNK)
- write_protected = write_protected_non_symlink (fd_cwd, filename, ds, sbuf);
+ {
+ write_protected = write_protected_non_symlink (fd_cwd, filename, ds, sbuf);
+ wp_errno = errno;
+ }
if (write_protected || x->interactive == RMI_ALWAYS)
{
- if (write_protected <= 0 && dirent_type == DT_UNKNOWN)
+ if (0 <= write_protected && dirent_type == DT_UNKNOWN)
{
if (cache_fstatat (fd_cwd, filename, sbuf, AT_SYMLINK_NOFOLLOW) == 0)
{
else
{
/* This happens, e.g., with `rm '''. */
- write_protected = errno;
+ write_protected = -1;
+ wp_errno = errno;
}
}
- if (write_protected <= 0)
+ if (0 <= write_protected)
switch (dirent_type)
{
case DT_LNK:
case DT_DIR:
if (!x->recursive)
- write_protected = EISDIR;
+ {
+ write_protected = -1;
+ wp_errno = EISDIR;
+ }
break;
}
char const *quoted_name = quote (full_filename (filename));
- if (0 < write_protected)
+ if (write_protected < 0)
{
- error (0, write_protected, _("cannot remove %s"), quoted_name);
+ error (0, wp_errno, _("cannot remove %s"), quoted_name);
return RM_ERROR;
}