diff options
author | monty@hundin.mysql.fi <> | 2001-06-01 04:27:59 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-06-01 04:27:59 +0300 |
commit | 866a82782c180ca20044ece9634b2721580839a1 (patch) | |
tree | ffdc7daed643167b8c8097cf1b60e75151d39eb9 /pstack | |
parent | 762f423d91a6f7f25db431d50da3d401d9053d8c (diff) | |
download | mariadb-git-866a82782c180ca20044ece9634b2721580839a1.tar.gz |
Added support for symlinked tables.
myisamchk: Don't force a repair if the only problem was that the
open count wasn't correct.
Added missing error messages.
Diffstat (limited to 'pstack')
-rw-r--r-- | pstack/bucomm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pstack/bucomm.c b/pstack/bucomm.c index 6c491d80bb5..d3231e71747 100644 --- a/pstack/bucomm.c +++ b/pstack/bucomm.c @@ -212,7 +212,7 @@ make_tempname (filename) { tmpname = xmalloc (sizeof (template)); strcpy (tmpname, template); - mktemp (tmpname); + mkstemp (tmpname); } return tmpname; } |