Case uchar pointer to a char pointer when calling strlen().

This commit is contained in:
Wayne Davison
2005-01-28 21:02:15 +00:00
parent 5f238db203
commit 0eeb1cf83a

View File

@@ -709,7 +709,7 @@ static const char *get_filter_tok(const char *p, int xflags,
cp++;
len = cp - s;
} else
len = strlen(s);
len = strlen((char*)s);
if (mflags & MATCHFLG_CLEAR_LIST) {
if (!(xflags & (XFLG_DEF_INCLUDE | XFLG_DEF_EXCLUDE)) && len) {