diff options
author | Andreas Schwab <schwab@redhat.com> | 2010-10-24 21:43:15 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-10-24 21:43:15 -0400 |
commit | 8e9f92e9d5d7737afdacf79b76d98c4c42980508 (patch) | |
tree | e32d3fc076f96d6b6ee06e2a43bc0ff9e408a2a5 /elf/dl-open.c | |
parent | bc96fbda275c305ddc1b0b6d94fc68d81369221a (diff) | |
download | glibc-8e9f92e9d5d7737afdacf79b76d98c4c42980508.zip glibc-8e9f92e9d5d7737afdacf79b76d98c4c42980508.tar.gz glibc-8e9f92e9d5d7737afdacf79b76d98c4c42980508.tar.bz2 |
Require suid bit on audit objects in privileged programs
Diffstat (limited to 'elf/dl-open.c')
-rw-r--r-- | elf/dl-open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-open.c b/elf/dl-open.c index c394b3f..cf8e8cc 100644 --- a/elf/dl-open.c +++ b/elf/dl-open.c @@ -223,7 +223,7 @@ dl_open_worker (void *a) /* Load the named object. */ struct link_map *new; - args->map = new = _dl_map_object (call_map, file, 0, lt_loaded, 0, + args->map = new = _dl_map_object (call_map, file, lt_loaded, 0, mode | __RTLD_CALLMAP, args->nsid); /* If the pointer returned is NULL this means the RTLD_NOLOAD flag is |