summaryrefslogtreecommitdiff
path: root/myisam/ft_stopwords.c
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2003-10-15 19:01:47 +0200
committerunknown <serg@serg.mylan>2003-10-15 19:01:47 +0200
commit249798d8464d9bcbf726cdabfd6193212c945b9c (patch)
tree9a028664963415fd0997564f29f0428d651b0da4 /myisam/ft_stopwords.c
parentb1124529ed31d2fad544504d2f44db0c84eb292e (diff)
downloadmariadb-git-249798d8464d9bcbf726cdabfd6193212c945b9c.tar.gz
get rid of default_charset_info for index fulltext searches
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 5163aca60bd..6682de18c65 100644
--- a/myisam/ft_stopwords.c
+++ b/myisam/ft_stopwords.c
@@ -81,7 +81,7 @@ int ft_init_stopwords()
goto err0;
len=my_read(fd, buffer, len, MYF(MY_WME));
end=start+len;
- while (ft_simple_get_word(&start, end, &w))
+ while (ft_simple_get_word(default_charset_info, &start, end, &w))
{
if (ft_add_stopword(my_strdup_with_length(w.pos, w.len, MYF(0))))
goto err1;