diff options
author | Christopher Faylor <me@cgf.cx> | 2007-03-01 15:13:47 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2007-03-01 15:13:47 +0000 |
commit | 6e070c257c9026b433cdae7b0ad7f2ba909558bf (patch) | |
tree | b9b2ced0b412b53afd7ae4068de5c604c7db6c71 /winsup/cygwin/environ.cc | |
parent | a49625d566c34c895ed2eac3055977bb07c319b7 (diff) | |
download | newlib-6e070c257c9026b433cdae7b0ad7f2ba909558bf.zip newlib-6e070c257c9026b433cdae7b0ad7f2ba909558bf.tar.gz newlib-6e070c257c9026b433cdae7b0ad7f2ba909558bf.tar.bz2 |
* Makefile (DLL_OFILES): Remove ntea.o
* environ.cc (set_ntea): Delete.
(parse_thing): Delete "ntea" setting.
* fhandler.cc (fhandler_base::open): Remove allow_ntea considerations.
(check_posix_perm): Ditto.
* fhandler_disk_file.cc (fhandler_disk_file::fchmod): Ditto.
(fhandler_base::open_fs): Ditto.
(fhandler_disk_file::mkdir): Ditto.
* path.cc (symlink_worker): Ditto.
* security.cc (get_file_attribute): Ditto.
(set_file_attribute): Ditto.
* security.h: Remove allow_ntea declaration.
Diffstat (limited to 'winsup/cygwin/environ.cc')
-rw-r--r-- | winsup/cygwin/environ.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/winsup/cygwin/environ.cc b/winsup/cygwin/environ.cc index a031a7b..54063d8 100644 --- a/winsup/cygwin/environ.cc +++ b/winsup/cygwin/environ.cc @@ -542,12 +542,6 @@ set_proc_retry (const char *buf) } static void -set_ntea (const char *buf) -{ - allow_ntea = (buf && strcasematch (buf, "yes")); -} - -static void set_ntsec (const char *buf) { allow_ntsec = (buf && strcasematch (buf, "yes")); @@ -591,7 +585,6 @@ static struct parse_thing {"export", {&export_settings}, justset, NULL, {{false}, {true}}}, {"forkchunk", {func: set_chunksize}, isfunc, NULL, {{0}, {0}}}, {"glob", {func: &glob_init}, isfunc, NULL, {{0}, {s: "normal"}}}, - {"ntea", {func: set_ntea}, isfunc, NULL, {{0}, {s: "yes"}}}, {"ntsec", {func: set_ntsec}, isfunc, NULL, {{0}, {s: "yes"}}}, {"proc_retry", {func: set_proc_retry}, isfunc, NULL, {{0}, {5}}}, {"reset_com", {&reset_com}, justset, NULL, {{false}, {true}}}, |