From: Paul Eggert Date: Tue, 27 Dec 2005 08:00:12 +0000 (+0000) Subject: (wipename): Use similar open flags to other places we open directories. X-Git-Tag: COREUTILS-6_0~1020 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3f11d67a569b4cf14a9c4bf3e5b1bb80799be00f;p=platform%2Fupstream%2Fcoreutils.git (wipename): Use similar open flags to other places we open directories. Don't bother trying to open dir for writing, since POSIX prohibits it. --- diff --git a/src/shred.c b/src/shred.c index 3e47aad1c..fdcc54d7d 100644 --- a/src/shred.c +++ b/src/shred.c @@ -1031,9 +1031,7 @@ wipename (char *oldname, char const *qoldname, struct Options const *flags) bool first = true; bool ok = true; - int dir_fd = open (dir, O_WRONLY | O_NOCTTY); - if (dir_fd < 0) - dir_fd = open (dir, O_RDONLY | O_NOCTTY); + int dir_fd = open (dir, O_RDONLY | O_DIRECTORY | O_NOCTTY | O_NONBLOCK); if (flags->verbose) error (0, 0, _("%s: removing"), qoldname);