diff options
author | unknown <monty@donna.mysql.com> | 2001-02-18 13:56:10 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2001-02-18 13:56:10 +0200 |
commit | 8afcb175aa83b1f3d9f8ecbf15bdaec5f31d0d40 (patch) | |
tree | 47cf20488aa11083734792277f16161f7dad6aff /mysys/mf_format.c | |
parent | 3006cd3246edb5781cb924e0dcdab9a719b10db2 (diff) | |
download | mariadb-git-8afcb175aa83b1f3d9f8ecbf15bdaec5f31d0d40.tar.gz |
Fixed problem with concurrent inserts and read-previous
Fix for BSDI 4.0
Docs/manual.texi:
Added MySQL AB information
configure.in:
Fix for BSDI 4.0
myisam/mi_rprev.c:
Fixed problem with concurrent inserts and read-previous
mysys/mf_format.c:
Fix for BSDI 4.0
sql/handler.cc:
Fixed type
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 bb784ff08fe..c4425806e01 100644 --- a/mysys/mf_format.c +++ b/mysys/mf_format.c @@ -110,7 +110,7 @@ my_string fn_format(my_string to, const char *name, const char *dsk, (void) strmov(pos,ext); /* Don't convert extension */ } /* Purify gives a lot of UMR errors when using realpath */ -#if defined(HAVE_REALPATH) && !defined(HAVE_purify) +#if defined(HAVE_REALPATH) && !defined(HAVE_purify) && !defined(HAVE_BROKEN_REALPATH) if (flag & 16) { struct stat stat_buff; |