diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2005-07-03 07:15:39 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2005-07-03 07:15:39 +0000 |
commit | 9c34c16a060f8d2efb43eab5044b8decfbff0088 (patch) | |
tree | ebe1a517841f56cc01e3fa5a66c84d93ea5f952f | |
parent | 6207fc885c2b9ab47319481f459e419232a95913 (diff) | |
download | coreutils-9c34c16a060f8d2efb43eab5044b8decfbff0088.tar.xz |
Include fcntl--.h rather than fcntl.h.
Do not include unistd-safer.h.
(save_cwd): Don't call fd_safer; no longer needed
now that we include fcntl--.h.
-rw-r--r-- | lib/save-cwd.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/save-cwd.c b/lib/save-cwd.c index aefdb6e7e..1e988175b 100644 --- a/lib/save-cwd.c +++ b/lib/save-cwd.c @@ -25,18 +25,14 @@ #include "save-cwd.h" +#include <errno.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> - #include <unistd.h> -#include <fcntl.h> - -#include <errno.h> - #include "chdir-long.h" -#include "unistd-safer.h" +#include "fcntl--.h" #include "xgetcwd.h" /* On systems without the fchdir function (WOE), pretend that open @@ -76,10 +72,10 @@ save_cwd (struct saved_cwd *cwd) { cwd->name = NULL; - cwd->desc = fd_safer (open (".", O_RDONLY)); + cwd->desc = open (".", O_RDONLY); if (cwd->desc < 0) { - cwd->desc = fd_safer (open (".", O_WRONLY)); + cwd->desc = open (".", O_WRONLY); if (cwd->desc < 0) { cwd->name = xgetcwd (); |