summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-02-08 21:29:01 +0000
committerUlrich Drepper <drepper@redhat.com>2005-02-08 21:29:01 +0000
commit785290ea8754ddd0705d52e5b929306d0cef8590 (patch)
treeeb7689edeca98d8d065d5464f96a209a1ec35796
parent4f0af30d0eaaaad568a768d898b2977233494c8b (diff)
(_dl_map_object_from_fd): Fix a typo.
-rw-r--r--elf/dl-load.c2
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;