diff options
author | monty@mashka.mysql.fi <> | 2002-06-11 11:20:31 +0300 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2002-06-11 11:20:31 +0300 |
commit | 2aecdd1a91bf8386829146609ce0219c51793841 (patch) | |
tree | 8fcaabe013fff43cf466235067f2c47f0cd66531 /myisam/ft_dump.c | |
parent | db41437a100e204e60f45d5c9a6b26f63e512659 (diff) | |
download | mariadb-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.c | 6 |
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; } |