diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-02-08 21:29:01 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-02-08 21:29:01 +0000 |
commit | 785290ea8754ddd0705d52e5b929306d0cef8590 (patch) | |
tree | eb7689edeca98d8d065d5464f96a209a1ec35796 | |
parent | 4f0af30d0eaaaad568a768d898b2977233494c8b (diff) | |
download | glibc-785290ea8754ddd0705d52e5b929306d0cef8590.tar glibc-785290ea8754ddd0705d52e5b929306d0cef8590.tar.gz glibc-785290ea8754ddd0705d52e5b929306d0cef8590.tar.bz2 glibc-785290ea8754ddd0705d52e5b929306d0cef8590.zip |
(_dl_map_object_from_fd): Fix a typo.
-rw-r--r-- | elf/dl-load.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-load.c b/elf/dl-load.c index f307dada2e..088b2224e2 100644 --- a/elf/dl-load.c +++ b/elf/dl-load.c @@ -1084,7 +1084,7 @@ _dl_map_object_from_fd (const char *name, int fd, struct filebuf *fbp, } # ifdef SHARED - if (l->l_prev == NULL || (mode && __RTLD_AUDIT) != 0) + if (l->l_prev == NULL || (mode & __RTLD_AUDIT) != 0) /* We are loading the executable itself when the dynamic linker was executed directly. The setup will happen later. */ break; |