summaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2008-12-25 11:55:27 +0100
committerOndrej Zajicek <santiago@crfreenet.org>2008-12-25 11:55:27 +0100
commit083c43e22efb5353a258827a9e6f2f995cfe822d (patch)
treee63fafb2dbc57bcf120234e96e48ea755502f546 /conf
parent165a62272720071ca5e9ed1badfddc78b7a7af10 (diff)
downloadbird-083c43e22efb5353a258827a9e6f2f995cfe822d.tar
bird-083c43e22efb5353a258827a9e6f2f995cfe822d.zip
fixes some 64-bit related bugs.
Filter code used 'aux' integer field of 'symbol' struct to store ptr to next symbol and both 'aux2' and 'def' fields for value. Changed to just 'def' for value and 'aux2' for ptr to next symbol. Also another minor bugfix.
Diffstat (limited to 'conf')
-rw-r--r--conf/conf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/conf.h b/conf/conf.h
index 5d5e4bc..17b975b 100644
--- a/conf/conf.h
+++ b/conf/conf.h
@@ -76,7 +76,7 @@ struct symbol {
struct sym_scope *scope;
int class;
int aux;
- void *aux2;
+ void *aux2;
void *def;
char name[1];
};