diff options
author | monty@donna.mysql.com <> | 2000-11-28 04:47:47 +0200 |
---|---|---|
committer | monty@donna.mysql.com <> | 2000-11-28 04:47:47 +0200 |
commit | 74e7ffe9872e74f3ac1ae4e93a2ef1b0d2c97c03 (patch) | |
tree | e3d40dd7c6a7e86bd2388da19d59d5a372bf7bb8 /mysys/mf_format.c | |
parent | ad2e43c7d6f4b7bbe5b92830ef11856c7d18b6b5 (diff) | |
download | mariadb-git-74e7ffe9872e74f3ac1ae4e93a2ef1b0d2c97c03.tar.gz |
New thr_alarm struct for better integration with OS2
Run bootstrap in separate thread
Fix bug in FLUSH TABLES table_name
Diffstat (limited to 'mysys/mf_format.c')
-rw-r--r-- | mysys/mf_format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/mf_format.c b/mysys/mf_format.c index 47d5e17cf22..3050fd88e90 100644 --- a/mysys/mf_format.c +++ b/mysys/mf_format.c @@ -117,7 +117,7 @@ my_string fn_format(my_string to, const char *name, const char *dsk, if (flag & 32 || (!lstat(to,&stat_buff) && S_ISLNK(stat_buff.st_mode))) { if (realpath(to,buff)) - strmov(to,buff); + strnmov(to,buff,FN_REFLEN-1); } } #endif |