1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-19 18:26:32 +02:00

Don't try to remove writeable files in a sticky /tmp directory, as

SVR4-like systems (e.g., Solaris 9) let you remove such files.
This commit is contained in:
Paul Eggert
2004-09-19 07:11:16 +00:00
parent 3074778063
commit d98eed0845

View File

@@ -60,7 +60,9 @@ foreach my $dir (@dir_list)
# Skip files owned by self, symlinks, and directories.
# It's not technically necessary to skip symlinks, but it's simpler.
-l $target_file || -o _ || -d _
# SVR4-like systems (e.g., Solaris 9) let you unlink files that
# you can write, so skip writable files too.
-l $target_file || -o _ || -d _ || -w _
and next;
$found_file = 1;