search for: is_wild

Displaying 2 results from an estimated 2 matches for "is_wild".

Did you mean: is_old
2020 Feb 09
3
[draft PATCH] whitelist support for refuse options
...+++++++--------------- 1 file changed, 82 insertions(+), 32 deletions(-) diff --git a/options.c b/options.c index e5b0cb68..02d1b174 100644 --- a/options.c +++ b/options.c @@ -1133,39 +1133,101 @@ static void set_refuse_options(char *bp) { struct poptOption *op; char *cp, shortname[2]; - int is_wild, found_match; + int is_wild, found_match, whitelist_mode, archive_whitelisted; shortname[1] = '\0'; + whitelist_mode = 0; + archive_whitelisted = 0; + /* We flag options for refusal by abusing the "descrip" field of + * struct poptOption (which we don't use) to temporar...
2006 Aug 15
2
Windows build with Visual Studio 2005 - some success
...;", "''=''", "$accept", "bool_q", "bool_clss", "bool_cls", "boosted_q", "q", "term_q", "wild_q", @@ -1771,7 +1771,7 @@ /* found a word so return it. */ lvalp->str = buf; if (is_wild) return WILD_STR; - return WORD; + return YYWORD; } int yylex(YYSTYPE *lvalp, QParser *qp) --- ../../ferret/ferret/ext/store.h 2006-08-15 15:25:38.143765800 +1000 +++ ext/store.h 2006-08-15 14:54:55.157804300 +1000 @@ -121,8 +121,8 @@ unsigned int is_read_uint(InStream *is); ullong is_rea...