aboutsummaryrefslogtreecommitdiffstats
path: root/symbol.c
diff options
context:
space:
mode:
Diffstat (limited to 'symbol.c')
-rw-r--r--symbol.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/symbol.c b/symbol.c
index 61408c49..670f831d 100644
--- a/symbol.c
+++ b/symbol.c
@@ -107,6 +107,10 @@ lookup(const char *name)
for (i = 0; tables[i] != NULL; i++) {
if (tables[i]->table_size == 0)
continue;
+
+ if (do_posix && tables[i] == global_table)
+ continue;
+
n = in_array(tables[i], tmp);
if (n != NULL) {
unref(tmp);