diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-04-13 21:28:18 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-04-13 21:28:18 +0200 |
commit | a12ae89f860229cbe5ba91f1f9cf17cc5a9ede31 (patch) | |
tree | 3b22b435b0081a1f52f68db25d66b253d0b71337 /elf/rtld.c | |
parent | 44500cbb25bc6e76723304b9ff39f875c04309f9 (diff) | |
download | glibc-a12ae89f860229cbe5ba91f1f9cf17cc5a9ede31.zip glibc-a12ae89f860229cbe5ba91f1f9cf17cc5a9ede31.tar.gz glibc-a12ae89f860229cbe5ba91f1f9cf17cc5a9ede31.tar.bz2 |
Assume that O_NOFOLLOW is always defined
Diffstat (limited to 'elf/rtld.c')
-rw-r--r-- | elf/rtld.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -2525,11 +2525,7 @@ process_envvars (enum mode *modep) messages to this file. */ else if (any_debug && debug_output != NULL) { -#ifdef O_NOFOLLOW const int flags = O_WRONLY | O_APPEND | O_CREAT | O_NOFOLLOW; -#else - const int flags = O_WRONLY | O_APPEND | O_CREAT; -#endif size_t name_len = strlen (debug_output); char buf[name_len + 12]; char *startp; |