diff options
author | serg@serg.mysql.com <> | 2001-04-17 21:30:02 +0200 |
---|---|---|
committer | serg@serg.mysql.com <> | 2001-04-17 21:30:02 +0200 |
commit | 185c2beaea68c4f267e3285022a5a30e34d41adb (patch) | |
tree | 6c294f797e941fcb6156771d2a0f0dd4393d06bb /myisam/ft_stopwords.c | |
parent | f751ab1a9ad87e9df09554dc636abc521432c34f (diff) | |
download | mariadb-git-185c2beaea68c4f267e3285022a5a30e34d41adb.tar.gz |
ft_* variables added
Diffstat (limited to 'myisam/ft_stopwords.c')
-rw-r--r-- | myisam/ft_stopwords.c | 2 |
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 */ |