diff options
author | Pavel Machek <pavel@ucw.cz> | 1999-08-20 11:59:39 +0200 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 1999-08-20 11:59:39 +0200 |
commit | 2981814066543b72e292b7b36ca41bfa1cc2554c (patch) | |
tree | 3de36047d2e51ff9011cf69d8f70776ccdc21075 /filter | |
parent | bce8a34b128f1c0495f3f7a28d832d9c2b4a9543 (diff) | |
download | bird-2981814066543b72e292b7b36ca41bfa1cc2554c.tar bird-2981814066543b72e292b7b36ca41bfa1cc2554c.zip |
Few FIXME's removed from auth, few FIXME's added to filter.
Diffstat (limited to 'filter')
-rw-r--r-- | filter/filter.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/filter/filter.c b/filter/filter.c index c98440c..4149971 100644 --- a/filter/filter.c +++ b/filter/filter.c @@ -4,6 +4,9 @@ * Copyright 1998 Pavel Machek <pavel@ucw.cz> * * Can be freely distributed and used under the terms of the GNU GPL. + * + * FIXME: local namespace for functions + * FIXME: switch (or how did we call it in final release?) */ #include <stdio.h> @@ -148,6 +151,7 @@ interpret(struct f_inst *what) case '<': COMPARE(i==-1); case '<=': COMPARE(i!=1); + /* FIXME: Should be able to work with prefixes of limited sizes */ case '~': TWOARGS; res.type = T_BOOL; |