diff options
author | Ross Lagerwall <rosslagerwall@gmail.com> | 2011-12-17 14:43:40 -0500 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-12-17 14:43:40 -0500 |
commit | ad8ac1bd6a3db5becaf1dc20394f6e682d7828cc (patch) | |
tree | 91e27ee99d949b25030156f40ee38d73086c52a0 /resolv/res_init.c | |
parent | 370a7d88f724d245536becd707ffb9666bb62933 (diff) | |
download | glibc-ad8ac1bd6a3db5becaf1dc20394f6e682d7828cc.tar.gz glibc-ad8ac1bd6a3db5becaf1dc20394f6e682d7828cc.tar.xz glibc-ad8ac1bd6a3db5becaf1dc20394f6e682d7828cc.zip |
Open /etc/resolv.conf with FD_CLOEXEC
Diffstat (limited to 'resolv/res_init.c')
-rw-r--r-- | resolv/res_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resolv/res_init.c b/resolv/res_init.c index 73caaa4c5e..c58c763841 100644 --- a/resolv/res_init.c +++ b/resolv/res_init.c @@ -233,7 +233,7 @@ __res_vinit(res_state statp, int preinit) { (line[sizeof(name) - 1] == ' ' || \ line[sizeof(name) - 1] == '\t')) - if ((fp = fopen(_PATH_RESCONF, "rc")) != NULL) { + if ((fp = fopen(_PATH_RESCONF, "rce")) != NULL) { /* No threads use this stream. */ __fsetlocking (fp, FSETLOCKING_BYCALLER); /* read the config file */ |