1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-12 23:08:17 +02:00

`chmod 0 file; rm file' would no longer prompt before removal.

(remove_file): Revert last change.
This commit is contained in:
Jim Meyering
2001-02-18 16:24:21 +00:00
parent 325680aae4
commit 57e7dc4cda

View File

@@ -615,7 +615,7 @@ remove_file (struct File_spec *fs, const struct rm_options *x)
int asked = 0;
char *pathname = fs->filename;
if (!x->ignore_missing_files && x->interactive && x->stdin_tty
if (!x->ignore_missing_files && (x->interactive || x->stdin_tty)
&& euidaccess (pathname, W_OK))
{
if (!S_ISLNK (fspec_filetype_mode (fs)))