diff options
author | monty@donna.mysql.com <> | 2001-02-18 13:56:10 +0200 |
---|---|---|
committer | monty@donna.mysql.com <> | 2001-02-18 13:56:10 +0200 |
commit | bfc0d5ca29e496cd98e0a04c55caa91a19c1e518 (patch) | |
tree | 47cf20488aa11083734792277f16161f7dad6aff /mysys/mf_format.c | |
parent | 0ccc30f40ca74d22a5eec2c7fb87411d335d7d77 (diff) | |
download | mariadb-git-bfc0d5ca29e496cd98e0a04c55caa91a19c1e518.tar.gz |
Fixed problem with concurrent inserts and read-previous
Fix for BSDI 4.0
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; |