summaryrefslogtreecommitdiff
path: root/myisam/ft_dump.c
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2002-06-11 11:20:31 +0300
committermonty@mashka.mysql.fi <>2002-06-11 11:20:31 +0300
commit2aecdd1a91bf8386829146609ce0219c51793841 (patch)
tree8fcaabe013fff43cf466235067f2c47f0cd66531 /myisam/ft_dump.c
parentdb41437a100e204e60f45d5c9a6b26f63e512659 (diff)
downloadmariadb-git-2aecdd1a91bf8386829146609ce0219c51793841.tar.gz
Big code cleanup/review before 4.0.2 release.
(All commit emails since 4.0.1 checked) This had to be done now, before the 4.1 tree changes to much, to make it easy to propagate bug fixes to the 4.1 tree.
Diffstat (limited to 'myisam/ft_dump.c')
-rw-r--r--myisam/ft_dump.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/myisam/ft_dump.c b/myisam/ft_dump.c
index 822603212a0..c9350ee77b9 100644
--- a/myisam/ft_dump.c
+++ b/myisam/ft_dump.c
@@ -148,16 +148,16 @@ int main(int argc,char *argv[])
if (maxlen<keylen2)
{
maxlen=keylen2;
- strcpy(buf_maxlen, buf2);
+ strmov(buf_maxlen, buf2);
}
if (max_doc_cnt < doc_cnt)
{
max_doc_cnt=doc_cnt;
- strcpy(buf_min_gws, buf2);
+ strmov(buf_min_gws, buf2);
min_gws=gws;
}
}
- strcpy(buf2, buf);
+ strmov(buf2, buf);
keylen2=keylen;
doc_cnt=0;
}