summaryrefslogtreecommitdiff
path: root/myisam/ft_stopwords.c
diff options
context:
space:
mode:
authorserg@serg.mysql.com <>2001-04-17 21:30:02 +0200
committerserg@serg.mysql.com <>2001-04-17 21:30:02 +0200
commit185c2beaea68c4f267e3285022a5a30e34d41adb (patch)
tree6c294f797e941fcb6156771d2a0f0dd4393d06bb /myisam/ft_stopwords.c
parentf751ab1a9ad87e9df09554dc636abc521432c34f (diff)
downloadmariadb-git-185c2beaea68c4f267e3285022a5a30e34d41adb.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 */