summaryrefslogtreecommitdiff
path: root/myisam/ft_stopwords.c
diff options
context:
space:
mode:
authorunknown <serg@serg.mysql.com>2001-04-17 21:30:02 +0200
committerunknown <serg@serg.mysql.com>2001-04-17 21:30:02 +0200
commit17ef8ef4443598265bca23d86d04fcc275da7804 (patch)
tree6c294f797e941fcb6156771d2a0f0dd4393d06bb /myisam/ft_stopwords.c
parent09f0384e7abce9d9cb744d0a20b897b5a77ef747 (diff)
downloadmariadb-git-17ef8ef4443598265bca23d86d04fcc275da7804.tar.gz
ft_* variables added
Diffstat (limited to 'myisam/ft_stopwords.c')
-rw-r--r--myisam/ft_stopwords.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/ft_stopwords.c b/myisam/ft_stopwords.c
index d796b87ed71..556f52650c8 100644
--- a/myisam/ft_stopwords.c
+++ b/myisam/ft_stopwords.c
@@ -48,7 +48,7 @@ int ft_init_stopwords(const char **sws)
for(;*sws;sws++)
{
- if( (sw.len= (uint) strlen(sw.pos=*sws)) < MIN_WORD_LEN) continue;
+ if( (sw.len= (uint) strlen(sw.pos=*sws)) < ft_min_word_len) continue;
if(!tree_insert(stopwords3, &sw, 0))
{
delete_tree(stopwords3); /* purecov: inspected */